@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body {
    background-image: url(./imagenes/escape1.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}

#nav {
    top: 10px;
    height: 10vh;
}
.boton {
    font-size: 16px;
   font-weight: bold;
   background: #000000;
   color: #333333;
   border-radius: 10px;
   padding: 10px 15px;
   letter-spacing: 0px;
   transition: 1s;
   text-align: right;
}
.boton:hover {
    background: #ff0000;
    color: #333333;
}

#contenedor {
    position: absolute;
    left: 15vw;
    bottom: 5vh;
    width: 70vw;
    height: 50vh;
    border: 5px solid #6b551b;
    border-radius: 5px;
    background-color: rgba(53, 47, 50, 0.5);
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal; ;
    color: white;
}

#pregunta {
    background-color: #242223;
    font-size: 35px;
}
#respuestasPosibles {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: row;
    font-size: 20px;
}

#respuestasPosibles a {
    text-decoration: none;
}

.respuestas-border-wrap {
    max-width: 250px;
    position: relative;
    background: linear-gradient( to right, rgb(193, 193, 69), rgb (93, 93, 0));
    padding: 7.5px;
    border-radius: 10px;
}

.respuestasCorrectas {
    transition: 0.5s;
    text-shadow: black;
    background: #222;
    color: white;
    padding: 20px;
    transition: 0.5s;
    width: 300px;
    height: 5px;
    line-height: 5px;
}

.respuestasCorrectas:hover {
    background-color: rgb(193, 193, 69);
    
}

.respuestas {
    background: #222;
    color: white;
    padding: 20px;
    transition: 0.5s;
    text-shadow: black;
    width: 300px;
    height: 5px;
    line-height: 5px;
    transition: 0,5s;
}
.respuestas:hover {
    background-color: #ff0000;
}
@media only screen and (max-width:768px) {
    #respuestasPosibles {
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap;
        flex-direction: column;
        font-size: 10px;
    }
    .respuestas,.respuestasCorrectas {
        background: #222;
        color: white;
        padding: 20px;
        transition: 0.5s;
        text-shadow: black;
        width: 250px;
        height: 2px;
        line-height: 2px;
        transition: 0,5s;}
        #pregunta {
            font-size: 20px;
        }
}