/* VARIABLES ================================= */
:root{
  --color-main: #030e18;
  --color-ligth: #0a1c2d;
  --color-second: #00c389;
}

/* ESTILOS GENERALES ================================= */
*{
  box-sizing: border-box;
}

body{
  min-height: 100dvh;
  flex-direction: column;
  display: flex;
  margin: 0;
  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
  font-family: "Lexend", sans-serif;
}


/* ESTILOS POR BLOQUE ================================= */

.container{
  width: 90%;
  max-width: 1200px;
}

/* PARTES :HEADER */

header{
  display: flex;
  flex-direction: column;
  color: white;
  align-items: center;
  justify-content: center;
  background-color: var(--color-main);
  min-height: 100px;
}

header .container{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

header .logo{
  display: flex;
  align-items: center;
  justify-content: center;
}

header .logo a{
  font-size: 30px;
}

header .logo strong{
  color: var(--color-second);
}

header nav{
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav a:hover{
  color: var(--color-second);
}

header ul{
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

header a{
  color: inherit;
  text-decoration: none;
}

/* PARTES :MAIN */

main{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-ligth);
}

main .container{
  text-align: center;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6{
  color: var(--color-second);
}

/* PARTES :FOOTER */

footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  color: white;
  background-color: var(--color-main);
}

footer .container{
  display: flex;
  align-items: center;
  justify-content: center;
}

footer a{
  color: inherit;
}