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

html {
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.main-container {
  width: 100vw;
  height: 100vh;
  padding: 24px 12px 15vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-container {
  position: relative;
  width: fit-content;
  height: 100%;
  margin: auto;
}

.image-vertical {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-horizontal {
  display: none;
}

.text-mobile {
  position: absolute;
  left: 8px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 8px;
}

.text-desktop {
  display: none;
}

.paragraph {
  display: inline;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 110%;
}

.crypted-mail {
  text-decoration: none;
  color: #000;
  transition: 0.2s;
}

.crypted-mail:hover {
  text-decoration: none;
  opacity: 0.65;
}

.crypted-mail:before {
  content: attr(data-name) "@" attr(data-domain) "." attr(data-tld);
}

.arrows {
  position: relative;
  z-index: 0;
}

.arrows::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 14px;
  z-index: -1;
  background: transparent center/contain url("/img/arrows.png") no-repeat;
}

@media screen and (orientation: landscape) {
  .main-container {
    padding: 12px 24px;
  }

  .image-container {
    width: 100%;
    height: fit-content;
  }
  .image-vertical {
    display: none;
  }

  .image-horizontal {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media screen and (min-width: 380px) {
  .text-mobile {
    left: 10px;
    bottom: 12px;
    font-size: 10px;
  }
}

@media screen and (min-width: 768px) {
  .text-mobile {
    font-size: 16px;
  }

  .arrows::before {
    transform: translate(5px, -6px);
    width: 52px;
    height: 26px;
  }
}

@media screen and (min-width: 1024px) {
  .main-container {
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 10vh 0;
  }

  .image-container {
    height: 90%;
    margin: 0;
    width: fit-content;
  }

  .image-horizontal {
    transition: 0.5s;
    transform: translate(-10vw);
  }

  .text-mobile {
    display: none;
  }

  .text-desktop {
    display: block;
    font-size: 22px;
  }

  .arrows::before {
    transform: translate(3px, -1px);
    width: 60px;
    height: 30px;
  }
}

@media screen and (min-width: 1920px) {
  .text-desktop {
    font-size: 24px;
  }
}
