.contactLabel {
    display: inline-block;
    font-family: Inter;
    font-size: 3rem;
    font-weight: bolder;
    margin: 0 0 .5rem 0;
}

.container {
    width: clamp(308px, 90vw, 600px);
    margin: 0 auto 0 auto;
    padding: 20px;
    background-color: #fff;
}

input[type="text"], #name2, input[type="email"], textarea {
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    border: 1px solid #000;
    border-radius: 0 !important;
    padding: 10px;
    font-family: Inter;
    font-size: 2rem;
}

textarea {
    margin-bottom: .5rem!important;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    outline: none;
    border-radius: 0;
}

textarea {
    height: 200px;
    resize: none;
}

input[type="submit"] {
    cursor: pointer;
    width: 100%;
    height: 62px;
    border-radius: 90px;
    font-family: Inter;
    font-size: 1.5rem;
    font-weight: bolder;
    border: 1px solid #ad3830;
    background-color: #ad3830;
    color: #ffffff;
    margin-top: rem;
    transition: background-color 2s;
    transition: border;
}

input[type="submit"]:hover {
    background-color: #ffffff;
    color: #000;
    border: 1px solid black;
}



#responseMessage {
    height: 44px;
}

@media (max-width: 555px) {
    .view {
        height: clamp(766px, calc(100dvh - 50px), calc(100dvh - 50px));
    }
}

.center {
    height: calc(100vh - 85px);
    width: 100vw;

}