@font-face {
  font-family: JosefinSans;
  src: url('/static/yos/fonts/JosefinSans-VariableFont_wght.ttf');
  font-style: normal;
  font-weight: 100 700;
}

@font-face {
  font-family: JosefinSans;
  src: url('/static/yos/fonts/JosefinSans-Italic-VariableFont_wght.ttf');
  font-style: italic;
  font-weight: 100 700;
}

@keyframes entraPorArriba {
  0% {transform: translateY(-100%);}
  100% {transform: translateY(0);}
}

:root {
  --verde: #54851f;
  --gris_main: #191e20;
  --gris_nav: #111617;
}

body {
  background-color: #283235;
  margin: 0;
}

div#wrapper {
  background-color: var(--gris_main);
  color: #ffffffe6;
  font-family: JosefinSans, monospace;
  font-weight: 160;
  line-height: 1.2;
}

div#container {
  display: grid;
  width: 100%;
  position: relative;
}

div#nav {
  background-color: var(--gris_nav);
}

div#main {
  display: grid;
  overflow-y: hidden;
}

div#main > :first-child {
  overflow-y: visible;
  position: relative;
  animation: entraPorArriba 0.6s ease-in-out;
  z-index: 10;
}

div#menu {
  display: grid;
  grid-column: 1;
}

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

a.yos_buttons {
  border-top: 1px solid #acff2f1a;
  font-size: 16px;
  border-left-style: solid;
  border-left-color: transparent;
}

a.yos_buttons:first-child {
  border-top-color: transparent;
}

a.activo {
  border-left-color: var(--verde);
  font-weight: 400;
  background-color: var(--gris_main);
}

h1 {
  font-weight: 500;
  margin: 0;
}

#footer_more {
  display: block;
  text-align: center;
}

#footer_contact {
  text-align: center;
  margin: 0;
  font-size: 13px;
  font-weight: 160;
}

@keyframes footer_entrador {
  0% {transform: translateY(80px); opacity: 0;}
  50% {transform: translateY(80px); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}

.tab_br {
  display: none;
}

div.submenu {
  display: grid;
  background-color: var(--gris_main);
}

a.submenu_buttons {
  line-height: 30px;
}

a.submenu_activo {
  font-weight: 300;
}

a:last-of-type.submenu_buttons {
  padding-bottom: 10px;
}

a.submenu_activo::before {
  content: '\2022';
  vertical-align: middle;
  color: var(--verde);
  display: inline-block;
}

a.textlink {
  color: var(--verde);
  display: inline-block;
  font-weight: 400;
  text-shadow: 0 0 0 transparent;
  transition: transform 1.4s, text-shadow 1s, color 0.8s;
}

a.textlink:hover {
  padding: 10px;
  margin: -10px;
  transition: 0.3s;
  /* transform: rotate(-365deg) scale(1.3); */
  text-shadow: 0 0 15px #dfdfd9;
  color: #6db71c;
}

#flecha_grande {
  font-weight: 100;
  color: #54851f2b;
}

.título {
  font-size: 20px;
  font-weight: 310;
}