form {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: auto;
}

.form {
    margin-top:2vh;
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}



.contactform {
    /* background-image: url(./images/marble.png); */
    background-repeat: no-repeat;
    background-position: bottom right;
    /* background-color: #696969; */
    /* background-color: #8f8f8f; */
    background: #ffffff;
    /* background: linear-gradient(90deg, rgba(143, 143, 143, 1) 0%, rgba(122, 122, 122, 1) 25%, rgba(138, 138, 138, 1) 74%, rgba(171, 171, 171, 1) 100%); */
    color:#303525;
    padding-top:2vh;
}

.contactform li:nth-child(2n+1) {
    padding: 0;
}

/* .contactform ul {
    background-color: #838383;
}

#contactform li::marker {
    color: #ffffff;
} */

/* #contactform p {
    font-size: clamp(20pt,23pt,25pt);
    font-weight:300;
    line-height: 1.2;
    margin:1vw;
    color:#222;
} */

label {
    margin-bottom: 1vh;
    font-size: clamp(16pt, 18pt, 20pt);
}

input,
textarea {
    background-color: #f3f3f3;
    color:#333;
}

input,
textarea,
button#send {
    padding: .25em .5em;
    margin-bottom: 1vh;
    border-radius: 3px;
    border: none;

}

input,
textarea,
button#send {
    font-family: "raleway", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: clamp(16pt, 18pt, 20pt);

}

button#send {
    padding: 20px;
    color:#000;
}


textarea {
    height: 20vh;
}




@media screen and (max-width: 1400px) {
    form {
        width: 100vw;
        width: 100dvw;
        padding: 4vw;
    }

}

@keyframes mailSent {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}

.mail-icon {
    animation: mailSent 1s forwards;
}