
header {
    background-image: url('../images/rpf_header.PNG');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

main p {
    font-size: 140%;
    margin-top: 3em;
    margin-bottom: 3em;
    font-weight: 600;
    color: yellow;
    text-shadow: 1px 1px 2px black;
    text-align: center;
}

form {
    display: grid;
    width: 100%;
    justify-content: center;
    padding-right: 2%;
    margin-right: 2%;
    margin-bottom: 2em;
}

label {
    font-size: 140%;
    margin-top: 1em;
    font-weight: 600;
    color: yellow;
    text-shadow: 1px 1px 2px black;
}

input {
    margin-bottom: .5em;
    width: 150%;
    height: 100%;
}

textarea {
    width: 150%;
    height: 150%;
    resize: none;
    margin-bottom: 1em;
}

span {
    color: yellow;
    font-size: 120%;
    font-weight: bold;
    margin-top: 2em;
}

button {
    
    width: 150%;
    margin-top: 4em;
    font-size: 100%;
    font-weight: 600;
}

@media only screen and (max-width: 780px) {
    form {
        width: 80%;
    }
}
@media only screen and (max-width: 470px) {
    form {
        width: 60%;
    }
    input {
        margin-bottom: .5em;
        width: 120%;
        margin-left: 3em;
    }
    label {
        margin-left: 2em;
        width: 150%;
    }
    textarea {
        width: 120%;
        margin-left: 3em;
    }

    button {
        width: 120%;
        margin-left: 2.6em;
    }
    
}