@font-face {
  font-family: 'kwarrior';
    src: url('../assets/KnightWarrior-w16n8.otf')
}

@font-face {
    font-family: 'venite';
    src: url('../assets/VeniteAdoremus-rgRBA.ttf');
}

.titlelogo{
    display: block;
    margin: 0 auto;
    width: 400px;
    padding-top: 50px;
}

.titleButtons{
    display: grid;
    grid-template-columns: repeat(1fr, 1fr);
    text-align: center;
    margin-top: 6vh;
}

.titleBttn{
    font-family: 'kwarrior';
    font-size: 6vh;
    letter-spacing: 2px;
    color: rgb(255, 255, 255);
    margin: 2% auto;
    width: 25vh;
    height: 10vh;
    background-color: rgb(10, 3, 49);
    border-radius: 6%;
    border-color: beige;
    border-width: 3px;
}

body{
    background: url('../assets/bg.png');
}




/* MODAL DE MENÚ */

.hidden {
  display: none;
}

/* Fondo oscuro */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.575);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Ensure that when both classes are present the overlay is hidden.
   This overrides the .overlay display:flex rule so .hidden works. */
.overlay.hidden {
  display: none;
}

/* Ventana del menú */
.modal {
  position: relative;
  background: #121125ec;
  color: white;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
  border-color: beige;
  border-width: 4px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

/* Botón X */
.close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.optionsContainer{
    display: grid;
    grid-template-columns: 1fr;
}

.optionTitle{
    font-family: 'kwarrior';
    font-size: 6vh;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.option_item{
    font-family: 'venite';
    font-size: 3vh;
    margin: 10px 0;
}