header {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  transition: 600ms;
}
header img {
  opacity: 0;
  position: absolute;
  left: 15px;
  width: 75px;
  height: 75px;
  transition: 300ms;
}
header .frogs {
  left: 30%;
  width: auto;
  top: 10px;
}
header .gans {
  left: 64%;
  width: auto;
  top: 10px;
}
header .frog {
  left: 50%;
  width: auto;
  top: 10px;
  z-index: -1;
}
header h1 {
  opacity: 0;
  color: white;
  transition: 300ms;
}
header .logo {
  opacity: 0;
  visibility: hidden;
  font-weight: bold;
  text-decoration: none;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 2px;
}
header ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}
header ul li a {
  color: black;
  text-decoration: none;
  display: block;
  padding: 0.5em;
  font-size: 2em;
  text-align: right;
}
header ul li a:hover {
  font-weight: bold;
}

header.sticky {
  padding: 10px 100px;
  background-color: black;
}
header.sticky img {
  opacity: 1;
}
header.sticky h1 {
  opacity: 1;
}
header.sticky .logo {
  opacity: 1;
  color: white;
  visibility: visible;
}
header.sticky li a {
  color: white;
}
header.sticky li.download {
  visibility: visible;
}/*# sourceMappingURL=home.css.map */