* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1vw;
}

@font-face {
  font-family: handy;
  src: url(../assets/fonts/WhiteAngelica.ttf);
}

@font-face {
  font-family: text;
  src: url(../assets/fonts/futura-pt-light.otf);
}

body {
  max-width: 1920px;
  margin: auto;
  background-image: linear-gradient(200deg, #e4e4e4 0%, #d5dbde 30%, #a7a394ec 60%, #5b6352f5 100%);
  background-repeat: no-repeat;
}

header {
  height: 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1em 0;
  padding-right: 5vw;
}

header .logo-text {
  font-family: handy;
  font-size: 1.35em;
  color: #5a5a5a;
  text-shadow: 1px 1px 5px #7c7c7c;
  margin-left: 10vw;
}

header nav {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, black, #e4e1e1) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(black), to(#e4e1e1)) 1;
     border-image: linear-gradient(to right, black, #e4e1e1) 1;
}

header nav a {
  font-family: text;
  font-size: 1em;
  color: darkgray;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

header nav a div {
  width: 1.5vw;
  height: 0.15vw;
  background-color: darkgray;
  margin: 0.2vw 0;
}

header nav a:hover {
  color: #051801;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

section {
  height: 35.4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3vw;
  padding-left: 5vw;
  padding-bottom: 4.1vw;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-animation-name: split;
          animation-name: split;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

section .submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4vw;
  padding-top: 1vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  border: 0.3vw solid #051801;
  -o-border-image: linear-gradient(140deg, #051801, #c0bdb2ec, #051801) 1;
     border-image: linear-gradient(140deg, #051801, #c0bdb2ec, #051801) 1;
}

section .submenu h1 {
  height: 3vw;
  width: 100%;
  text-align: center;
  font-family: text;
  font-size: 1.5vw;
  color: #051801;
  text-decoration: underline;
}

section .submenu a {
  font-family: text;
  text-decoration: none;
  color: #5c5e58;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

section .submenu a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@-webkit-keyframes split {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes split {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

footer {
  height: 10vw;
  background-color: #051801;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2em;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer-style {
  font-family: text;
  color: rgba(245, 245, 245, 0.5);
  -webkit-transition: .05s ease-out;
  transition: .05s ease-out;
}

footer span:hover {
  color: whitesmoke;
}

footer .footer-style {
  font-family: text;
  color: rgba(245, 245, 245, 0.5);
  -webkit-transition: .05s ease-out;
  transition: .05s ease-out;
}

footer span:hover {
  color: whitesmoke;
}
/*# sourceMappingURL=listmenu.css.map */