@font-face {
  font-family: "CourierPrime-Regular";
  src: url("./CourierPrime-Regular.ttf");
}

@keyframes fadein {
  from { opacity: 0%; }
  to { opacity: 100%; }
}

body {
  background: linear-gradient(0.125turn, #b9a4c5, #5f89bf);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  margin: 0px;
  animation-name: fadein;
  animation-duration: 2.5s;
}

.titre {
  font-family: "CourierPrime-Regular", "Courier New", "Courier", monospace;
  text-shadow: 1px 1px 4px #000000AA;
  color: #FFFFFFFF;
}

@media (orientation: landscape) {
  .titre {
    font-size: min(25vh, 175px);
  }
}
@media not (orientation: landscape) {
  .titre {
    font-size: min(27.5vw, 175px);
  }
}

.menu {
  width:min(100vw, 1000px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.menu_b {
  max-height: min(22vw, 22vh);
  height: 90px;
  padding: 3px;
  border-radius: 10px;
  margin: 3px;
  box-shadow: rgba(50, 50, 100, 0.66) 0px 2px 6px -1px, rgba(0, 0, 0, 0.8) 0px 1px 4px -1px;
  background: linear-gradient(#FFFFFF77, #00000000);
  opacity: 100%;
  display: block;
}


.menu_b:hover {
  box-shadow: rgba(50, 50, 100, 0.66) 0px 2px 6px -1px, rgba(0, 0, 0, 0.8) 0px 1px 4px -1px, rgba(0, 0, 0, 0.5) 0px 0px 0px 1px inset;
}

@media (orientation: landscape) {
  .chat {
    height:min(33vh, 256px);
  }
}
@media not (orientation: landscape) {
  .chat {
    height:min(70vw, 256px);
  }
}
