/* * {
    border: 1px solid rebeccapurple;
} */

.content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contacts-block {
    padding-left: 10px;
    display: block;
    flex-direction: column;
    gap: 10px;
    width: fit-content;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.contact-line span:hover {
    color: rgb(117, 117, 117);
}

.contact-line img {
    width: 40px;
}

@media (max-width: 768px) {
    .contact-line {
        font-size: 20px;
        color: rgb(0, 0, 0);
        text-decoration: none;
    }

    .contact-line img {
        width: 20px;
    }


}