@font-face {
  font-family: "OmoriFont";
  src: url("/Omori-fonts/OMORI_GAME.ttf") format("truetype");
}
@font-face {
  font-family: "OmoriFont2";
  src: url("/Omori-fonts/OMORI_GAME2.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.Background {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/omoriGifs/mariGif.gif");

  background-size: cover;
  background-position: center;
  height: 100vh;
}
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  display: flex;
  align-items: center;
}
#title {
  color: white;
  font-size: 2em;
  text-align: center;
  margin-top: 20px;
  font-family: "OmoriFont";
  cursor: pointer;
  padding: 10px;
}
#title:hover {
  color: #4e00ad;
  text-shadow: 0 0 10px #12003b;
}
#text {
  color: white;
  font-size: 1.2em;
  text-align: center;
  font-family: "OmoriFont2";
  margin-top: 10px;
  display: block;
  cursor: pointer;
}
#text:hover {
  color: #ffd4d4;
  text-shadow: 0 0 10px #300000e3;
}

#gif {
  width: 200px;
  height: 200px;
  color: white;
  cursor: pointer;
  margin-top: 20px;
}
