/* Import Google font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}
.game-container {
  display: flex;
  align-items: center;
  justify-content: center;
    padding: 40px 6%;
  background: #A9AFE9;
}
.wrapper {
  width: 65vmin;
  height: 70vmin;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  border-radius: 5px;
  background: #293447;
  box-shadow: 0 20px 40px rgba(52, 87, 220, 0.2);
}
.game-details {
  color: #B8C6DC;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 20px 27px;
  display: flex;
  justify-content: space-between;
}
.play-board {
  height: 100%;
  width: 100%;
  display: grid;
  background: #212837;
  grid-template: repeat(30, 1fr) / repeat(30, 1fr);
}
.play-board .food {
  background: url('img/virus.png') no-repeat center center / cover;
}
.play-board .head {
  background: #60CBFF;
}

.controls {
  display: none;
  justify-content: space-between;
}
.controls i {
  padding: 25px 0;
  text-align: center;
  font-size: 1.3rem;
  color: #B8C6DC;
  width: calc(100% / 4);
  cursor: pointer;
  border-right: 1px solid #171B26;
}

@media screen and (max-width: 800px) {
  .wrapper {
    width: 90vmin;
    height: 115vmin;
  }
  .game-details {
    font-size: 1rem;
    padding: 15px 27px;
  }
  .controls {
    display: flex;
  }
  .controls i {
    padding: 15px 0;
    font-size: 1rem;
  }
}


header{
    width: 100vw;
    color: #000;
    position: relative;
}

.nav-icono {
    font-size: 2.5rem;
    cursor: pointer;
}

.menu{
    list-style: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #33418B;
    display: none;
}

.menu a{
    color: #fff;
}

.nav-contenedor:hover .menu{
    display: block;
    z-index: 10;
}

.menu-item{
    font-size: 1.5rem;
    text-align: right;
    margin-bottom: 20px;
    padding: 0 8%;
}

.menu-separador{
    margin: 20px auto;
    width: 90%;

}

.mediturnos-nav{
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

nav{
    height: 5rem;
    background-color: #33418B;
    padding:0 5.4%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #fff;
} 

.header-titulo{
    font-family: 'Work Sans';
    font-size: 1.6rem;
}

.header-subtitulo{
    font-family: 'Work Sans';
    font-size: 1.1rem;
}

a{
    text-decoration: none;
}

.sub-header{
    background-color: #BAE5E8;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 5.4%;
}

.icono-casa{
    font-size: 3rem;
    color: #A9AFE9;
}

.header-texto{
    color: #1e1e1e;
    font-family: 'Work Sans';
}

.seccion-primaria {
    background-color: #6974D4; 
}

.seccion-primaria h2{
    color: #fff;
    font-family: 'Lilita One';
    font-weight: 300;
    font-size: 2.5rem;
    padding: 20px 4%;
}

.seccion-primaria p{
    color: #B0C6EC;
    font-family: 'Work Sans';
    font-weight: 300;
    font-size: 1rem;
    padding: 0px 4%;
    padding-bottom: 20px;
}

footer{
    background-color: #252948;
    color: #fff;
    padding: 25px 5.4%;
    font-family: 'Work Sans';
}

.footer-contenedor {
    display: flex;
    align-items: center;
    gap: 20px;
}

hr{
    margin: 40px 0;
}

.footer-titulo{
    font-size: 1.75rem;
}
.footer-subtitulo{
    font-size: 1rem;
}

.copyright{
    font-family: 'Work Sans';
    font-size: 0.875rem;
}


.social-titulo{
    font-size: 1.5rem;
    font-family: 'Work Sans';
    margin-bottom: 20px;
    text-align: center;
}

.icons-list{
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.icons-social{
    font-size: 40px;
    color: #fff;
}