@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

.content {
    max-width: 1250px;
    margin: auto;
    padding: 20px 20px 20px 20px;
    box-sizing: border-box; /* importante para respetar el ancho */
    overflow-x: hidden;     /* previene scroll horizontal */
}
.content .top {
    display: flex;
    align-items: center;
    justify-content: center;
}
.content .top .media-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px; /* opcional, reemplaza margin si prefieres */
}
.content .top .media-icons a {
    height: 40px;
    width: 40px;
    margin: 0 4px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    /* nuevo */
    display: flex;
    align-items: center;
    justify-content: center;
}
.top .media-icons a:nth-child(1) {
    background: #4267b2;
}
.top .media-icons a:nth-child(1):hover {
    color: #4267b2;
    background: #fff;
}
.top .media-icons a:nth-child(2) {
    background: #e1306c;
}
.top .media-icons a:nth-child(2):hover {
    color: #e1306c;
    background: #fff;
}
.top .media-icons a:nth-child(3) {
    background: #000000;
}
.top .media-icons a:nth-child(3):hover {
    color: #000000;
    background: #fff;
}
.top .media-icons a:nth-child(4) {
    background: #198754;
}
.top .media-icons a:nth-child(4):hover {
    color: #198754;
    background: #fff;
}

@media (max-width: 700px) {
    .content .top .media-icons a {
        height: 35px;
        width: 35px;
        font-size: 14px;
    }
}
@media (max-width: 520px) {
    .content .top {
        flex-direction: column;
    }
    .content .top .media-icons {
        margin-top: 16px;
    }   
}