@font-face {
  font-family: "Ppneuebit";
  src: url("./font/ppneuebit-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Ppmonowest";
  src: url("./font/ppmonowest-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.scene {
  position: relative;
  width: 500px;
  height: 500px;
  z-index: 2;
}

.scene > div {
  position: absolute;
}

.crane {
  position: absolute;
  top: 199px;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: top center;
}

.hook-group {
  position: absolute;
  top: 268px;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: top center;
}

.hook {
  position: relative;
  top: -175px;
  left: 66%;
  transform: translateX(-50%);
}

.box {
  margin-top: 84px;
  width: 78px;
  height: 80px;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.logo svg {
  width: 80px;
  height: 75px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-block {
  position: absolute;
  top: 600px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  transform-origin: top center;
}

.title {
  font-family: "Ppneuebit", Impact, sans-serif;
  font-size: 100px;
  letter-spacing: 0.12em;
  margin: 0 0 8px 0;
  color: white;
}

.subtitle {
  font-family: "Ppmonowest", Lato, sans-serif;
  font-size: 30px;
  opacity: 0.6;
  margin: 0;
  color: white;
}


.ships-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}


.ships-layer .ship {
  position: fixed;
  bottom: -150px;
  width: 40px;
}


.ship img {
  width: 100%;
  height: auto;
  display: block;

}
