body {
    position: relative;
    /* Essential: Makes body the reference for absolute children */
    margin: 0;
    /* Good practice for full-screen layouts */
    padding: 0;
    overflow-x: hidden;
    max-width: 100vw;
    font-family: "Monteserrat", sans-serif;
    height: auto;
}

h1,h2,h4,
h3,h5 {
    text-align: center;
    margin: auto;
}

input {
    height: 3vh;
    border: none;
    border-bottom: 2px solid rgb(20, 9, 114);
    font-family: "Montserrat", sans-serif;
    font-size: 2vh;
    background-color: transparent;



}

input[type=text],
input[type=email],
textarea {
    margin-top: 1vh;
    margin-bottom: 1vh;
    background-color: white;
    border: 1px solid rgb(20, 9, 114);
    box-shadow: 0px 4px 15px 1px rgba(255, 255, 255, 0.788);

}

textarea {
    width: 70vw;
    height: 15vh;
}

input[type=checkbox] {
    display: flex;
    flex-direction: row;
    width: 3vh;
    height: 2vh;




}

button {
    margin-top: 3vh;
    font-size: 3vh;
    margin-bottom: 3vh;
    height: 6vh;
    font-family: "Montserrat", sans-serif;
    background-color: rgb(20, 9, 114);
    color: white;
    border-radius: 5px;
}

label {
    font-size: 16px;
}

.checkboxFrame {
    display: flex;
    flex-direction: row;
    margin: 1em;

}

#contactForm {
    position: relative;
    height: auto;
    margin: auto;
    margin-top: 20vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 70vw;
    min-height: 120vh;

}

.column {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
}

.whiteFont {
    color: white;
}

.blueBackground {
    background-color: rgb(20, 9, 114);
}


#result{
    font-family: "Montserrat", sans-serif;
    font-size: 4vh;
    color: white;
}

#thanksSection{
    margin-top: 1vh;
    padding: 5vh;
   
}
@media (min-width: 330px) and (max-width: 852px) and (orientation: portrait) {

    #thanksSection{
        margin-top: 15vh;
        padding: 2vh;
       
    }
}


