:root {
  --doc-height: 100%;
}

html,
body {
  padding: 0;
  margin: 0;
  height: 100vh;
}

.main {
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%),
    url(../img/bg.jfif) no-repeat;
  background-size: cover;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 65vw;
}

.main__logo {
  margin-bottom: 3.49vw;
}

.main__logo svg {
  width: 33.4vw;
  height: 9.8vw;
}

figure {
  margin: 0;
}

.button {
  background-color: transparent;
  border: 0.052vw solid rgba(255, 255, 255, 1);
  border-radius: 2.5vw;
  padding: 0.625vw 1.684vw;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.25vw;
  line-height: 2.5vw;
  color: #ffffff;
  cursor: pointer;
}

.button:hover {
  text-decoration: underline;
}

.button:active {
  transform: translateY(0.05vw);
}

@media (orientation: portrait) {
  .main-content {
    width: 80vw;
    align-items: center;
  }

  .main__logo {
    margin-bottom: 25vw;
  }

  .main__logo svg {
    width: 78.49vw;
    height: 23.03vw;
  }

  .button {
    border-radius: 8.125vw;
    padding: 2.05vw 3.96vw;
    font-size: 4.05vw;
    line-height: 8.1vw;
  }
}
