
/*Fuente de OMORI*/
@font-face {
    font-family: omori;
    src: url("/OMORI_GAME2.ttf");
}

.textoOmori {
    font-family: "omori";
}

body {
 background-color: rgb(255, 215, 230);
}

#titulo {
 /*fuente*/
 font-family: omori;
 font-size: 100px;
 
 /*centrar texto*/
 text-align: center;
 display: flex;
 align-items: center;
 justify-content: center;
 height: 50vh;
 color: white;
 text-shadow: rgb(255, 128, 128) 3px 3px, rgb(255, 128, 128) -3px 3px, rgb(255, 128, 128) -3px -3px, rgb(255, 128, 128) 3px -3px;
}

#todo {
 text-align: center; 
}

#entrar {
 font-family: omori;
 transform: scale(3); 
 font-size: 32px;
}

@media (max-width: 768px) {
 #titulo {
  font-family: omori;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
  color: white;
  text-shadow: rgb(255, 128, 128) 2px 2px, rgb(255, 128, 128) -2px 2px, rgb(255, 128, 128) -2px -2px, rgb(255, 128, 128) 2px -2px;
 }
}