main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    margin: 0 auto;
    overflow: hidden;
}

body{
    overflow: visible;
}

form{
    width: 60vw;
}

main h1{
    font-size: 4rem;
}

main input{
    width: 100%;
    height: 5vh;
    font-size: 1.3rem;
    padding-left: 1vw;
}

main p{
    font-size: 1.5rem;
    padding-bottom: 1rem;
    padding-top: 1.5rem;
}

#dutch_yes,
#dutch_no{
    width: 1.5rem;
    font-size: 1.3rem;
}

.checkboxes{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

textarea{
    min-width: 60vw;
    min-height: 10vh;
    font-size: 1.3rem;
    font-family: var(--main-font);
    padding-left: 4px;
    max-width: 100vw;
    max-height: 100vh;
}

.submit-button{
    margin-top: 5vh;
    margin-bottom: 5vh;
    border: none;
    border-radius: 5px;
}

@media only screen and (max-width: 600px) {
    p{
        font-size: 1.2rem;
    }

    input{
        font-size: 0.8rem;
    }

    .submit-button{
        margin-top: 2vh;
        margin-bottom: 7vh;
    }

    textarea{
        font-size: 0.8rem;
    }
    h1{
        font-size: 3rem;
    }
}