*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    font-family:'lemon';
    font-size: 40px;
}
body{
    background-color: #98c7fd;
}
a{
    text-decoration: none;
    color: unset;
}
@font-face {
    font-family: 'hello';
    src: url(../img/Hello\ Almeida.ttf);
}
@font-face {
    font-family: 'lemon';
    src: url(../img/lemon.otf);
}
h1{
    font-family: 'hello';
    letter-spacing: 8px;
    color: #000;
    text-shadow: 4px 4px 5px tomato;
}
.container{
   display: flex;
   height: 100vh;
   background-image: url(../img/city.png);
   background-position: center;
   background-repeat: no-repeat;
}
.central{
    border: 1px solid black;
    width: 85vw;
    height: 90vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-around;
    
}
.jugamos{
    border: 1px solid black;
    border-radius: 10px;
    background-image: url(../img/pngegg.png);
    background-size: 10%;
    max-width: 700px;
    height: 100px;
    padding: 25px;
    margin: auto;
    font-weight: bold;
}
.jugamos:hover{
    background-color: #f5deb3cc;
}

.cajas{
    display: flex;
    justify-content: space-around;
}


.opcion{
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.opcion:hover{
    background-color: #ffffff81;
}

#piedra{
    background-image: url(../img/piedra.png);
}
#papel{
    background-image: url(../img/papel.png);
}
#tijera{
    background-image: url(../img/tijera.png);
}
.fakefooter{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85vw;
    height: 18vh;
    margin-top: 20px;
}
#volver{
    width: 270px;
    background-size: 20%;
}
#puntaje{
    border: 1px solid black;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 200px;
    margin: auto;
    padding: 4px;
    background-color: #deb887b0;
}

.resultado{
    background-color: #ffb52bc0;
    border: 1px solid black;
    border-radius: 10px;
    position:absolute;
    width: 85vw;
    height: 50vh;
    display: flex;
    justify-content: center;
}
.cajita{
    width: 80%;
    height: 30vh;
    position: relative;
    top: 60px;
    border: 1px solid black;
    background-color: #28c228f1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#resolucion{
    color: #ffd700;
    font-weight: bold;
    text-shadow: 2px 2px 2px black;
}

@media (max-width: 780px) {
    h1{
        font-size: 50px;
    }
    .opcion:hover{
        background-color: unset;
    }
    #volver{
        background-size: 25%;
        height: 86px;
        padding: 20px 35px;
        width: 150px;
    }
    #puntaje{
        font-size: 35px;
    }
}

.oculto{
    display: none!important;
}

.animate__animated.animate__shakeY {
    --animate-duration: 8s;
}

@media (max-width: 460px){
    h1{
        font-size: 40px;
    }
    .opcion{
        height: 100px;
        width: 100px;
    }
    .fakefooter{
        margin: 0px;
    }
    #volver{
        font-size: 28px;
        height: 70px;
    }
    #puntaje{
        font-size: 28px;
    }
}