@font-face {
  font-family: "Alfa";
  src: url("../AlfaSlabOne-Regular.ttf");
  }

html {
  height: 100%;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: #F6AA46;
  background-color: rgba(37,20,2,1);
}


body{
  margin: 0px;
}

nav{
  background-color: #6E3A06;
  position: absolute;
  top: 0px;
  left: 50px;
  width: 400px;
  
  border-radius: 0px 0px 10px 10px;
  border-style: solid;
  border-width: 0px 3px 3px 3px;
  border-color: #F6AA46;
  z-index: 50;
  transition: width 0.5s;
  overflow: hidden;
}

nav ul{
  flex-direction: row;
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding: 0px 50px 0px 50px;
  margin: 0;
}

.navbarItem{
  text-align: center;
  flex-grow: 1;
  float: left;
  padding: 0% 5% 0% 5%;
  margin: 3% 3% 3% 3%;
  transition-duration: 0.3s;
  font-size: 25px;
}

.navbarItem > a{
  color: #F6AA46;
  transition: all 0.3s;
}

.navbarItem:hover{
  transform: scale(1.05 , 1.05);
  background-color: #F6AA46;
  border-radius: 5px 5px 5px 5px;
  transition: all 0.3s;
}
.navbarItem:hover > a{
  color: #6E3A06;
  transition: all 0.3s;
}


.navbarItem-selected{
  text-align: center;
  flex-grow: 1;
  float: left;
  padding: 0% 5% 0% 5%;
  margin: 3% 3% 3% 3%;
  font-size: 25px;
  transform: scale(1.05 , 1.05);
  background-color: #F6AA46;
  border-radius: 5px 5px 5px 5px;
}

.navbarItem-selected > a{
  color: #6E3A06;
}

nav a{
  display: block;
  text-decoration: none;
  font-weight: bold;
}

.border{
  border-color: #F6AA46;
  border-width: 1px;
  border-style: solid;
  height: 30px;
  align-self: center;
}

.background{
  display: block;
  width: 100%;
  height: 30%;
  position: relative;
  top: 0px;
  z-index: 10;
}

.header{
  position: absolute;
  font-size: 15vw;
  top: 75px;
  z-index: 500;
  text-align: center;
  
  width: 100%;
  background-image: linear-gradient(gold 50%,  #F6AA46 75%);
  color: transparent;
  background-clip: text;
  font-family: 'Alfa' ;
  transition: top 0.5s;
} 

.pageBackground {
  background: linear-gradient(0deg, rgba(37,20,2,1) 0%, rgba(84,45,5,1) 90%, rgba(107,58,8,0.90) 100%);
  width: 100%;
  position: relative;
  margin-top: -10%;
  padding: 10% 5% 50px 5%;
  z-index: 15;
  overflow: hidden;
}

*{
  box-sizing: border-box;
  border-width: 0px;
}


@media (max-width:1320px){
  .navbarItem{
    font-size: 25px;
  }
}



@media (max-width: 625px) {
  nav{
    left: unset;
    width: 100%;
    transition: width 0.5s;
  }
}

@media (max-width: 400px) {
  
  .navbarItem{
    font-size: 5vw;
  }
  .header{
    top: 40px;
    transition: top 0.5s;
  }
}