@font-face {
  font-family: "CoFoSansMono";
  src: url("../assets/font/CoFoSansMono-Regular-Trial.otf") format("opentype");
}

@font-face {
  font-family: "RoslindaleCyrillicDisplayCondensed";
  src: url("../assets/font/RoslindaleCyrillicDisplayCondensed-Regular-Testing.ttf")
    format("truetype");
}

body {
  background-image: url("../assets/image/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  margin: 0;
}

.main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-image: url("../assets/image/logo.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  object-fit: cover;
}

.title {
  position: absolute;
  bottom: calc(100% - 571px);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  font-family: "RoslindaleCyrillicDisplayCondensed";
}

.link {
  position: absolute;
  bottom: 45px;
  left: 35px;
}

.link a {
  font-family: "CoFoSansMono";
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
}

.image {
  position: absolute;
  bottom: 31px;
  right: 50px;
  display: inline-block;
  width: 154px;
  height: 87px;
  overflow: hidden;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .image {
    display: none;
  }
  .link {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-height: 850px) {
  .title {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
  }
}
