
main {
    height: 90vh;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins';
    font-weight: 700;
    color: #0E0E0E;
}

.contact-container{
    background-color: #F0F0F0;
    height: 50vh;
    border-radius: 8.5px;
    padding: 2.5em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#contact-title{
    font-size: 1.2rem;
    line-height: 5vh;
}

#contact-form {
    font-size: .8rem;
    line-height: 1.5rem;
}

#name, #email {
    height: 4vh;
}

#message {
    height: 18vh;
}

#name, #email, #message {
    width: 16.8vw;
    border-radius: 2.8px;
    border: 1.5px solid black;
    font-weight: 700;
    text-align: center;
}

#contact-btn {
    background-color: #F6C34A;
    border-radius: 6.35px;
    width: 17vw;
    height: 6vh;
    border: none;
    font-family: 'Poppins';
    font-weight: 700;
    color: #0E0E0E;
    cursor: pointer;
}

#contact-btn:hover {
    color: #F0F0F0;
    transform: scale(1.1);
}

