.social-container {
    display: flex;
    justify-content: center;
    gap: 370px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

img {
    width: 80px;
    height: 80px;
}

.social-btn {
    cursor: pointer;
    margin-top: 10px;
    background-color: rgb(206, 206, 255);
    padding: 10px;
    border: 2px solid transparent;
    border-radius: 15px;
    width: 100%;
    text-align: center;
}

.social-btn:hover{
    background-color: aqua;
}

.red-social {
    width: 80px;
    text-align: center;
}

@media (max-width: 708px) {
    .social-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 40px;

    }
}