* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 1rem;
    max-width: 95%;
    width: 500px;
}

.logo {
    width: 105%;
    max-width: 510px;
    height: auto;
    margin-bottom: 0.15rem;
}

.subtext {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.player {
    width: 100%;
    margin-bottom: 0.5rem;
}

.green-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.green-button:hover {
    background-color: #45a049;
}

@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 1rem;
    }

    .subtext {
        font-size: 1rem;
    }

    .green-button {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}


.social-icons {
    margin-top: 1.5rem;
    padding: 1rem;
    /*background-color: rgba(255, 255, 255, 0.7); /* fondo blanco semitransparente */
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.3));
}

.social-icons a:hover img {
    transform: scale(1.2);
}

@media (max-width: 600px) {
    .social-icons {
        padding: 0.6rem;
        gap: 0.5rem;
    }

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