@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

.nav{
    flex: 0 0 auto;
    display: flex;
    width: 100%;
    flex-direction: row;
    background: var(--nav_back);
    box-shadow: 0 0 19px 2px rgba(0,0,0,.91);
    text-shadow: 1px 1px 1px rgba(0,0,0,.5);
    max-height: 60px;
}

.nav-in{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 30px 0px 30px;
}

.nav-inner a{
  font-size: 1.3em;
  display: inline-block;
}

.nav-inner a::after{
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #900020, #B00000);
  transition: 1s;
}

.nav-inner:hover a::after{
  width: 100%;
}

.nav-inner{
    padding: 0px 15px 0px 15px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-family: var(--title-font);
    transition: 0.3s;
}

.nav-inner:hover{
    background: var(--nav_back_hover);
}

.title{
    font-size: 2.5em;
    font-family: var(--title-font);
}

.footer{
  flex: 2 0 auto;
  flex-direction: row-reverse;
  height: 60px;
}

.link:hover{
  background: var(--nav_back_hover);
  transition: 1s;
}
