body {
  padding: 0;
  margin: 0;
}

body img {
  width: 100%;
}

body header {
  position: absolute;
  z-index: 9;
  right: 0;
  width: 100%;
}

@media screen and (max-width: 830px) {
  body header {
    left: 0;
  }
}

body header .logo {
  position: absolute;
  top: 28%;
  left: 1%;
  font-size: 30px;
  color: #fff;
}

body header nav {
  padding: 0 20px;
}

body header nav div {
  padding-top: 20px;
}

body header nav div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
}

@media screen and (max-width: 830px) {
  body header nav div ul {
    display: block;
  }
}

body header nav div ul li {
  margin-left: 34px;
}

@media screen and (max-width: 830px) {
  body header nav div ul li {
    padding-bottom: 20px;
  }
}

body header nav div ul li a {
  text-decoration: none;
  -webkit-transition: 1s;
  transition: 1s;
  color: white;
  font-size: 20px;
}

body header nav div ul li a:hover {
  color: #0cf615;
}

body .wrapper {
  position: absolute;
  background: rgba(8, 8, 9, 0.4);
  color: #fff;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 62%;
  height: 28%;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 32px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.body_slides {
  list-style: none;
  margin: 0;
  padding: 0;
}

.body_slides li {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-animation: anim_slides 12s linear infinite 0s;
          animation: anim_slides 12s linear infinite 0s;
}

.body_slides li:nth-child(1) {
  background-image: url("../img/dawn.jpg");
}

.body_slides li:nth-child(2) {
  -webkit-animation-delay: 6.0s;
  -moz-animation-delay: 6.0s;
  background-image: url("../img/land.jpg");
}

@-webkit-keyframes anim_slides {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.9;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*# sourceMappingURL=style.css.map */