@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
}

body, html {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Configuración del fondo */
    background-image: url('buddha.jpg'); /* Asegúrate de que el nombre sea exacto */
    background-repeat: repeat;           /* Esto hace que se multiplique */
    background-size: 150px;             /* Ajusta este tamaño para que la imagen sea más chica o grande */
    background-position: center;
}
.container {
    width: 450px;
    height: 330px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: rgb(247, 213, 255);
    
}

.btns {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);


}


p {
    text-align: center;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 120px;
    font-family: "Poppins",sans-serif;
    border-radius: 10px;
    color: black;
}

.increment {
    border: none;
    outline: none;
    width: 200px;
    height: 50px;
    margin: 15px;
    border-radius: 60px;
    font-size: 18px;
    color: #000000;
    cursor: pointer;
    background-color: green;
    transition: 0.5s;

}

.increment:hover {
    background-color: blue;
}

.decrement {
    border: none;
    outline: none;
    width: 200px;
    height: 50px;
    margin: 15px;
    border-radius: 60px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    background-color: rgb(0, 0, 0);
    transition: 0.5s;

}

.decrement:hover {
    background-color: rgba(190, 0, 57, 0.642);
}

.reset {
    border: none;
    outline: none;
    width: 200px;
    height: 50px;
    margin: 15px;
    border-radius: 60px;
    font-size: 18px;
    color: #000000;
    cursor: pointer;
    background-color: yellow;
    transition: 0.5s;

}

.reset:hover {
    background-color: rgb(0, 0, 0);
}

#vueltas {
    font-size: 24px; /* Más pequeño que el contador principal */
    height: auto;
    font-family: "Poppins", sans-serif;
    color: #555;
    margin-bottom: 10px;
}