.info-container {
    position: relative;
    width: 100%;
    height: fit-content;
    padding: 0.5em;
    text-align: center;
    overflow: hidden;
    z-index: 100;
}

.centered-content {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: fit-content;
    border-radius: 1em;
    overflow: hidden;
    padding: 1.5em;
    background-color: #8585853b;
    backdrop-filter: blur(20px);
}



.info-container h1 {
    margin: 0;
    margin-bottom: 1em;
    color: rgb(255, 253, 148);
}

.info-container p {
    margin: 0;
    margin-bottom: 0.5em;
    color: white;
}

.info-container ul {
    list-style-type: none;
    color: white;
    transition: 0.5s;
}

.info-container li:hover {
    color: rgb(255, 0, 0);
    font-size: 1.2em;
    cursor: pointer;
    transition: 0.5s;
}

.info-container iframe {
    margin: 0;
    margin-bottom: 1em;
    margin-top: 1em;
    width: 50vw;
    height: 30vw;
    border-radius: 1em;
    z-index: 100;
}

@media (max-width: 700px) {
    .centered-content {
        width: 85%;
        left: 48%;
    }
}

/* BOTONES */

button {
    width: 10em;
    padding: 0.5em;
    font-family: 'Symtext';
    font-size: 1em;
    background-color: #f7be74;
    color: black;
    cursor: pointer;
    margin: 0;
    margin-top: 1em;
    margin-bottom: 1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

button a {
    color: #000000;
    text-decoration: none;
    display: block;
    font-size: 100%;
}

button:hover {
    background-color: #ffaf46;
    transform: scale(1.05);
}

.store-buttons {
    width: 100%;
    text-align: center;
    align-items: center;
    font-size: 5em;
    color: white;
    text-decoration: none;
}

.store-buttons a {
    display: inline-block;
    border-radius: 5px;
    overflow: hidden;
    color: white;
}

.dance a:hover {
    animation: dance 0.5s ease infinite;
}

@keyframes dance {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.store-buttons img {
    width: 120px;
    height: auto;
    border: none;
    vertical-align: middle;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.store-buttons img:hover {
    opacity: 0.8;
    transform: scale(1.1);
}