body {
    margin: 0;
    background-color: var(--L);
    color: var(--D);
    justify-content: center;
    align-items: center;
    height: 100dvh;
}

#headerContainer {
    height: 20dvh;
    display: flex;
}
#headerContainer a {
    height: 12dvh;
    margin: 5vmin auto auto auto;
    width: calc(100% - 20vmin);
    display: flex;
}
#headerContainer img {
    height: 100%;
    width: 100%;
    margin: 0;
}

#container {
    width: 100dvw;
    height: 60dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

button {
    font-size: 2.6vmin;
    padding: 0.6vmin 1.2vmin;
    border-radius: 0.5vmin;
    border: none;
    background-color: var(--D);
    color: var(--L);
    cursor: pointer;
}
button:hover {
    opacity: 0.8;
}
.title {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    font-size: 2.8vmin;
    margin-bottom: 2vmin;
}

#footerContainer {
    height: 20dvh;
    display: flex;
    justify-content: space-between;
}
#footerContainer a {
    height: 18vmin;
    margin-top: auto;
}
#footerContainer img {
    height: 18vmin;
}




#contact {
    height: auto;
    width: 50dvw;
    min-width: 45vmin;
    margin-top: 5vmin;
}

input#name, input#email, textarea#message {
    width: 100%;
    display: flex;
    margin: 0 auto 2vmin auto;
    font-size: 2.8vmin;
    padding: 0.6vmin 1.2vmin;
    border-radius: 0.5vmin;
    border: 2px solid var(--D);
    background-color: var(--L);
}
textarea#message {
    resize: none;
}
label#name, label#email, label#message {
    float: left;
    font-size: 2.8vmin;
    margin: 0.6vmin 1.2vmin;
}

#showForm {
    font-size: 2.6vmin;
}

#showInfo {
    float: left;
    font-size: 2.6vmin;
}

a {
    text-decoration: underline;
    cursor: pointer;
}

#submit {
    float: right;
}

@media only screen and (max-aspect-ratio: 1.2) {
    #contact {
        width: 80dvw;
    }
}