.contact {
    display: flex;
    width: 80%;
    justify-content: center;
    padding: 20px;
    margin-bottom: 30px;
}

.contactSection {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #4b4b4b33;
    margin: 20px;
    box-sizing: border-box;
    padding: 30px 10px 30px 10px;
    border-radius: 10px;
    border: rgb(97, 25, 25) 1px solid;
}

.contactSection>p {
    font-size: clamp(0.8rem, -1.5rem + 6vw, 1rem);
    line-height: clamp(1.5rem, -1.5rem + 8vw, 2rem);
    text-align: center;
}

.contactSection>.contactTitle {
    font-size: clamp(1.6rem, -1.5rem + 6vw, 2rem);
    margin-bottom: 20px;
}

@media (max-width: 1300px) {
    .contact {
        width: 85%;
    }
}

@media (max-width: 992px) {
    .contact {
        flex-direction: column;
        align-items: center;
    }

    .contactSection {
        width: 100%;
    }
}
