* {
    transition: all 0.3s;
  }
body{
    background: cadetblue;
    padding: 0;
    margin: 0;
    text-align: center;
    font-family: calibri;
    font-size: 100%;    
    display: flex;
    justify-content: center;
}

.conteiner-principal{
    /* background-color: yellow; */
    width: 90vw;
    height: 90vh;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
}
@media (max-width:600px){
    .conteiner-principal{
        height: auto;
    }
}
.start-screen{
    display: flex;
    justify-content: center;
}
/* .titulo-pregunta{
    display: flex;
    justify-content: center;
    background-color: rgb(166, 218, 253);
    padding: 10px;
    width: 80%;
    height: 80%;
    max-width: 800px;
} */
.conteiner-juego{
    background-color: rgb(166, 218, 253);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 80%;
    height: max-content;
    max-width: 800px;
}
@media (max-width: 600px){
    .conteiner-juego{
        height: auto;
    }
}

.opciones{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    width: 95%;
    height: auto;
}
@media (max-width:600px){
    .opciones{
        flex-direction: column;
        width: 90%;
        height: 90%;
    }

}

.opcion1{
    background-color: azure;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 1px 8px 10px rgb(33, 32, 32);
    margin: 10px 25px;
    width: 80%;
    height: auto;
    padding: 5px;

}
.opcion1:hover{
    background-color: rgb(219, 254, 219);
    box-shadow: 1px 4px 5px rgb(33, 32, 32);
}
.opcion1 img{
    width:100%;
    height:100%;
    object-fit: cover
}

.opcion2{
    background-color: azure;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 1px 8px 10px rgb(33, 32, 32);
    margin: 10px 25px;
    width: 80%;
    height: auto;
}
.opcion2:hover{
    background-color: rgb(219, 254, 219);
    box-shadow: 1px 4px 5px rgb(33, 32, 32);
}
.opcion2 img{
    width:100%;
    height:100%;
    object-fit: cover;
}

/*====================================== Tarejta incio */
.hide {
    display: none;
}
.start-card{
    height: fit-content;
    width: 80%;
    max-width: 380px;
    border-radius: 15px;
    background: #ebe6e6;
    box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.2);
    border: 5px solid #0a69ed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    overflow: hidden;
    margin-top: 30px;
}
.contenedor-tarjeta{
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
    height: 100%;
}
.texto-encima{
    position: absolute;
    text-transform: uppercase;
    top: 5%;
    color: rgb(10, 4, 4);
    font-size: large;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    width: 100%;
    
}
.start-card p{
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    padding: 15px 0;
    margin: 0;
}
.start-card img{
    width: 100%;
    height: 70%;
    position: initial;
}
.start-card h5{
    width: 100%;
    /* padding: 1px 0; */
    margin-bottom: 10px; 
    font-size: smaller;
}
button {  
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}
#start-button {
  font-size: 1rem;
  padding: 0.7em 1em;
  border-radius: 15px;
  background: #0a69ed;
  color: aliceblue;
  border: 4px solid #bdd3f1;
}
#restart{
    font-size: .8rem;
    margin-top: 20px;
    cursor: pointer;
}
#start-button:hover{
  background: #5395f2;
  font-size: 1.1rem;
  color: #ebe6e6;
  border: 3px solid #bdd3f1;

}
#restart {
  margin-top: 0.9em;
}
