* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 0;
}

.download a {
  font-size: 20px;
  color: blue;
}

.download {
  width: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 5%;
  margin-bottom: 7.5%;
}

body {
  background: #f4f5f8;
}
body header {
  height: 150px;
  background: linear-gradient(to right, Aquamarine, DarkCyan);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  position: relative;
}
body header h1 {
  font-size: 75px;
  color: DarkSlateGray;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 2px;
}
body header .hide {
  width: 50px;
  height: 50px;
  background-image: url(../add/pictures/menu.png);
  background-size: 50px 50px;
  position: absolute;
  right: 20px;
  top: 50px;
  display: none;
}
@media (max-width: 1023px) {
  body header .hide {
    display: block;
  }
}
body header ul {
  padding-left: 40px;
  list-style-type: none;
  display: flex;
}
body header ul a {
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 15px;
  transition: 0.4s color;
  color: DarkSlateGray;
  font-weight: 900;
  font-size: 26px;
  font-style: italic;
  letter-spacing: 2px;
}
body header ul a:hover {
  color: darkblue;
  text-decoration: underline;
}
@media (max-width: 1023px) {
  body header ul {
    display: none;
  }
}

@media (max-width: 1023px) {
  #small:target ~ nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, Aquamarine, DarkCyan);
    left: 0;
    top: 0;
    text-align: center;
    padding: 100px 0;
    transition: 0.7s;
  }
  #small:target ~ nav ul {
    display: flex;
    flex-direction: column;
  }
  #small:target ~ nav ul a {
    display: block;
    margin: 5px;
  }
  #small:target ~ nav ul a:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }
  #small:target ~ nav .hide-2 {
    width: 50px;
    height: 50px;
    background-image: url(../add/pictures/close.png);
    background-size: 50px 50px;
    position: absolute;
    right: 20px;
    top: 50px;
    display: none;
  }
}
@media (max-width: 1023px) and (max-width: 1023px) {
  #small:target ~ nav .hide-2 {
    display: block;
  }
}

#small:target ~ nav .hide {
  display: none;
}

/*# sourceMappingURL=style.css.map */
