@import url(player.css);
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #000000;
    background-image: url('fondo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
}

.main-image {
    width: 500px;
    height: 500px;
    object-fit: cover;
    display: block;
    margin: 30px auto;
}

.red-line {
    width: 550px;
    height: 2px;
    background-color: red;
    margin: 0 auto;
}

.audio-player {
    margin-top: 10px;
    width: 90%;
    max-width: 850px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons img {
    width: 15px;
    height: 15px;
    margin: 0 5px;
}

footer {
    margin-top: 20px;
    font-size: 12px;
    color: #e0e0e0;
}

@media (max-width: 1024px) {
    .main-image {
        width: 500px;
        height: 500px;
    }

    .red-line {
        width: 550px;
    }
}

@media (max-width: 768px) {
    .main-image {
        width: 450px;
        height: 450px;
    }

    .red-line {
        width: 480px;
    }
}

@media (max-width: 480px) {
    .main-image {
        width: 300px;
        height: 300px;
    }

    .red-line {
        width: 300px;
    }

    footer {
        font-size: 10px;
    }

    .social-icons img {
        width: 12px;
        height: 12px;
    }
}

