html, body {
    height: 100vh;
    margin: 0;

}

.container{
  border:2px solid black;
    background: linear-gradient(to bottom, rgb(240, 81, 81), black);
}

/* Header using CSS Grid */
.header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 0;
}

.heading {
    grid-column: 2;
    text-align: center;
    color: white;
    margin: 0;
    font-weight:bold;
}

/* Large logo without shrinking */
.logo {
    grid-column: 3;
    justify-self: end;
    height: 150px;      /* BIG logo */
}

/* Text */
.p1 {
    color: white;
    margin-top: 15px;
    font-size: 20px;
}

/* Center image */
.image-center {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.logo1 {
    height: 500px;
    padding-bottom:50px;
}
