input{
    margin-right: 1rem;
    border-radius: 5px;
    padding: 5px;
}
.content{
    border-radius: 10px;
    padding: 1rem;
    margin: 8rem 8rem 8rem 8rem;
    background-color: var(--nav-bar-color);
    color: white;
}
.contact{
    display: flex;
    justify-content: center;
}
.contactForm{
    justify-content: space-around;
    color: white;
}
.contactForm input{
    margin-top: 1rem;
    width: 12vw;
    display: flex;
}
#message{
    margin-top: 1rem;
    width: 80vw;
    height: 20vh;
    resize: none;
}
label{
    margin-top: 1rem;
    margin-right: 1rem;
    display: flex;
}
/*Hidden by default on desktop view*/
label[for="message"]{
    display: none;
}
.align{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
/*Resize for mobile*/
@media (max-width: 750px){
    .content{
        margin: 1rem 1rem 1rem 1rem;
    }
    .contactForm input{
        width: 80vw;
    }
    #message{
        width: 80vw;
    }
    label[for="message"]{
        display: block;
    }
}