.contacts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70vh;
    padding: 100px 0;
}

.contacts__container {
    display: flex;
    justify-content: center;
    border-radius: 20px;
    border: var(--text-color) 1px solid;
    background-color: var(--white-color);
    margin: 20px auto;
    padding: 5px;
}

.contacts__info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 10px;
}

.contacts__info p {
    font-size: 2rem;
}

.contacts__info a {
    color: var(--text-color);
    text-decoration: none;
}

.contacts__info a:hover {
    text-decoration: underline;
}

.contact-icon {
    cursor: default;
    width: 30px;
    height: 30px;
}