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

@font-face {
  font-family: MarckScript;
  src: url(../add/fonts/MarckScript-Regular.ttf);
}
.up-line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 75px;
  background-color: black;
  display: flex;
}
.up-line .up-line__link {
  font-size: 36px;
  font-family: MarckScript;
  color: white;
  text-decoration: none;
  line-height: 75px;
}
.up-line .up-line__link img {
  display: inline-block;
  position: relative;
  top: 6px;
  left: 15px;
}
@media (min-width: 1024px) {
  .up-line .up-line__link img {
    left: 55px;
  }
}
.up-line :first-child {
  margin-right: auto;
  margin-left: 10px;
}
@media (min-width: 1024px) {
  .up-line :first-child {
    margin-left: 50px;
  }
}
.up-line :last-child {
  margin-right: 10px;
}
@media (min-width: 1024px) {
  .up-line :last-child {
    margin-right: 50px;
  }
}

.menu-visual {
  display: none;
  height: 75px;
  background-color: darkgray;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.menu-visual ul {
  text-align: center;
}
.menu-visual ul li {
  display: inline-block;
}
.menu-visual ul li a {
  margin: 0 20px;
  font-size: 24px;
  font-family: MarckScript;
  line-height: 75px;
  color: white;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .menu-visual ul li a {
    font-size: 36px;
  }
}
.menu-visual ul li:last-child {
  position: absolute;
  right: 0;
}

#menu-hidden:target {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

html, body {
  height: 100%;
}

.wrapper-global {
  height: 100%;
}
.wrapper-global .wrapper {
  margin-top: 75px;
  height: 100%;
}
.wrapper-global .wrapper__main-background {
  min-height: 100%;
  background-image: url(../add/pictures/main-background.jpg);
  background-size: 195% auto;
  background-repeat: no-repeat;
  background-position: 0 60%;
  animation-name: appear-background;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  display: flex;
  flex-flow: column nowrap;
}
@media (max-width: 1023px) {
  .wrapper-global .wrapper__main-background {
    min-height: 35%;
  }
}
.wrapper-global .wrapper__main-background .wrapper__main-write {
  margin: 10% auto;
  text-align: center;
  color: orange;
}
.wrapper-global .wrapper__main-background .wrapper__main-write .wrapper__main-write-name {
  font-size: 100px;
  font-family: MarckScript;
  letter-spacing: 15px;
}
.wrapper-global .wrapper__main-background .wrapper__main-button {
  width: 250px;
  height: 75px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 40px auto 0 auto;
  box-shadow: 0 0 10px 10px rgba(73, 103, 144, 0.3);
  line-height: 75px;
  transition: background-color 2s;
}
.wrapper-global .wrapper__main-background .wrapper__main-button a {
  display: block;
  font-size: 36px;
  letter-spacing: 10px;
  font-weight: 600;
  text-decoration: none;
  color: orange;
}
.wrapper-global .wrapper__main-background .wrapper__main-button:hover {
  box-shadow: inset 0 0 7px 7px rgba(73, 103, 144, 0.3);
  background-color: rgba(0, 0, 0, 0.05);
}

@keyframes appear-background {
  0% {
    background-size: 195% auto;
    background-position: 0 60%;
  }
  50% {
    background-size: 225% auto;
    background-position: 25% 60%;
  }
  100% {
    background-size: 195% auto;
    background-position: 0 60%;
  }
}

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