* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.horizontal-div {
    width: 85%;
    max-width: 900px;
    height: 210px;
    background-color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    color: white;
    border-radius: 20px;
    margin-top: 30px;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}

.social-media {
    text-align: center;
}

.social-media p {
    margin: 0 0 30px 0;
    font-size: 28px;
    color: white;
    justify-content: center;
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media img {
    width: 50px;
    height: 50px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: background-color 0.3s;
}

.facebook {
    background-color: #3b5998;
}

.instagram {
    background-color: #e1306c;
}

.linkedin {
    background-color: #0077b5;
}

.twitter {
    background-color: rgb(0, 0, 0);
}

.social-links a:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .horizontal-div {
        flex-direction: column;
        padding: 15px;
    }

    .social-media p {
        font-size: 24px;
        text-align: center;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .social-media p {
        font-size: 25px;
        text-align: center;
    }

    .social-links {
        gap: 25px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}