#contactMe{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contactMe h1{
    font-size: clamp(2rem, 3vw, 3.5rem);
}

#contactContainer{
    width: 55%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0.5px solid black;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#contactContainer label{
    font-size: clamp(25px, 2vw, 1rem);
}

form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 85%;
    height: 90%;
    justify-content: center;
    align-items: center;
}

form input{
    width: 80%;
    height: 5%;
    border: 1px solid black;
    padding: 5px;
    font-size: 20px;
}

textarea{
    width: 80%;
    min-height: 150px;
    border: 1px solid black;
    border-radius: 4px;
    font-size: 20px;
    resize: vertical;
    padding: 5px;
}

form button{
    width: 50%;
    height: 40px;
    border-radius: 15px;
}