main{
    margin-left: 20vw;
}
.type-header > h2{
    margin-bottom: 5vh;
}

#google-form{
    min-height: 45vh;
}

/* for page title and description */
.intro{
    margin-bottom: 2.5vh;
}
div > h2{
    margin-top: 0;
}
div >p{
    max-width: 50vw;
}

/* for custom contact form */
#custom-form{
    max-width: 50vw;
    display: grid;
    grid-template-columns: auto 1fr;
    font-family: sans-serif;
    gap: 10px 5px;
}
#custom-form > label{
    justify-self: end;
}

#send {
    grid-column: 2;
    justify-self: start;
}
#message{
    height: 300px;
}

/* mobile view */
@media(max-width:650px){
    #custom-form{
        grid-template-columns: 1fr;
        gap: 0;
    }
    #send{
        grid-column: 1;
    }
    #custom-form > label, #send{
        justify-self: start;
        margin-top: 10px;
    }
}

/* for hidding non active form */
.hidden{
    display: none;
}