body {
    background-image: url("background.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

}

header {
    background-color: rgba(250, 235, 215, 0.8);
    padding: 0.5em;
    margin: 0.5em;
}

main {
    background-color: rgba(250, 235, 215, 0.8);
    margin: 0.5em;
}

label {
    display: grid;
    grid-template-columns: [labels] auto [controls] 1fr;
    grid-gap: 10px;
    width: 30vw;
    padding-bottom: 1em;
    font-size: 1.5vw;
    font-family: 'Delius';
}

select {
    font-size: 1vw;
}

h1 {
    font-family: 'Onest';
    font-size: 5vw;
    text-align: center;
}

h2 {
    font-family: 'Onest';
    font-size: 2.5vw;
    text-align: center;
}

h3 {
    font-family: 'Onest';
    font-size: 2vw;
}

h4 {
    font-family: 'Onest';
    font-size: 1.5vw;
}

form {
    display: flex;
    justify-content: space-around;
}

textarea
{
    font-size: 1vw;
}

.button {
    font-size: 2em;
    padding: 0.5em;
    margin-top: 1em;
}

.h3-center
{
    text-align: center;
}


/*Media Queries*/

@media screen and (max-width: 480px) {
    label {
        display:block;
        font-size: 3vw;
    }

    form {
        flex-direction: column;
        padding: 0.5em;
    }

    select
    {
        font-size: 3vw;
    }

    .button
    {
        font-size: 3vw;
    }

    h1 {
        font-size: 10vw;
        text-align: center;
    }

    h2 {
        font-size: 7vw;
    }

    h3 {
        font-size: 5vw;
    }

    h4 {
        font-size: 3vw;
    }

    textarea
    {
        font-size: 3vw;
    }
}