body{
    background-color: #fbe870;
    margin: 0;
}

header{
    padding-top: 3%;
    background-image: url(Bowl-Picture.jpg);
    background-size: 100% 100%;
    padding-bottom: 5%;
    background-repeat: no-repeat;
}

h1{
    font-style: italic;
    font-size: 5rem;
    color: white;
    text-align: center;
    margin-top: 3%;
}


h2{
    font-style: italic;
    font-size: 3rem;
    color: white;
    text-align: center;
}

h3{
    font-size: 2rem;
    padding-left: 60px;
    padding-top: 20px;
}

h4 {
    grid-column: 1 / -1;
    font-size: 2rem;
}

form {
    font-size: larger;
    display: grid;
    grid-template-columns: [labels] auto [controls] 1fr;
    grid-gap: 40px;
    grid-auto-flow: row;
    padding: 0 100px 0px 60px;
}

button{
    margin-top: 5%;
    background-color: white;
    width: 250px;
    height: 50px;
    border-radius: 45px;
    font-size: x-large;
    grid-column: 1/-1;
    justify-self: right;
}

button:hover{
    background-color: #F0F0F8;
}

.flex {
    display: flex;
    flex-direction: column;
}

#info{
    padding-top: 20px;
    padding-left: 60px;
}

@media screen and (max-width: 700px) {
    header{
        background-size: 120% 100%;
    }

    button{
        justify-self: center;
    }

    #info{
        justify-self: center;
        padding-left: 0;
    }
}