.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 70%
  );
}

.contact>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact input,
.contact textarea,
.contact button {
    width: calc(100% - 40px);
    max-width: 425px;
    border: none;
    padding: 10px 20px;
    margin: 10px 0px;
    font-size: 1.25em;
    border-radius: 5px;
}

.contact textarea {
    resize: none;
}

#btnContactUs {
    background-color: var(--primary);
    color: var(--white);
    width: 240px;
    transition: all 0.2s ease;
}

#btnContactUs:hover {
    background-color: var(--primary-dark);
    cursor: pointer;
}