* {
    font-family: sans-serif;
}

body {
    background-image: url("../img/patron-dulces-lluvia.png") !important;
    background-size: cover;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

#sidebar {
    color: #FFC300;
    font-family: "Jersey 15", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    margin-top: 20px;
    background-color: rgba(128, 128, 128, 0.2); /* Fondo gris transparente */
    padding: 20px; /* Espacio interior del tablero */
    border-radius: 10px; /* Bordes redondeados */
}

.box {
    width: 100%;
    padding-bottom: 100%;
    background-image: url("../img/Logo 150.png");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#timer {
    color: #FFC300;
    font-family: "Jersey 15", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
}

#attempts {
    color: #FFC300;
    font-family: "Jersey 15", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    position: absolute;
    top: 20px;
    left: 20px;
    margin-bottom: 20px;
    text-align: left;
}

#shopButton {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #EB008B;
    color: #ffffff;
    font-family: "Jersey 15", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
}

#shopButton:hover {
    background-color: #EA40A4;
}

.swal-container .swal2-html-container {
    font-size: 1.1rem;
    color: #444;
    text-align: left;
}

.swal-container .swal2-html-container small.terms-conditions {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    color: #888;
}

@media (max-width: 600px) {
    .board {
        grid-template-columns: repeat(3, minmax(40px, 1fr));
        gap: 3vw;
    }

    .box {
        width: 100%;
        padding-bottom: 100%;
    }

    #sidebar {
        font-size: 30px;
    }

    body {
        overflow: hidden;
    }

    #shopButton {
        right: 20px;
    }

    #attempts{
        font-size: 15px;
        top: 10px;
        right: 10px;
    }
}
