@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Raleway&display=swap");

html {
  scroll-behavior: smooth;
}

body p {
  font-family: "Raleway", sans-serif;
}

body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(to bottom, #323232 0%, #3f3f3f 40%, #1c1c1c 150%),
    linear-gradient(
      to top,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(0, 0, 0, 0.25) 200%
    );
  background-blend-mode: multiply;
}

.home {
  height: 100%;
  background: linear-gradient(to bottom, #323232 0%, #3f3f3f 40%, #1c1c1c 150%),
    linear-gradient(
      to top,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(0, 0, 0, 0.25) 200%
    );
  background-blend-mode: multiply;
}

.banner {
  width: 100%;
  display: flex;
}

.logo {
  width: 40%;
  display: flex;
  height: 100%;
  align-items: center;
  position: absolute;
  opacity: 0%;
}

.logo img {
  height: 40%;
  opacity: 100%;
}

.catch {
  padding-left: 45%;
  width: 60%;
  display: flex;
  height: 100%;
  align-items: center;
  position: absolute;
}

.hide {
  background-color: transparent;
  overflow: hidden;
}

.text {
  font-size: 55px;
  font-weight: 500;
  color: white;
  transform: translateY(100%);
  display: inline-block;
}

.vl {
  display: flex;
  align-items: center;
  background-color: white;
  width: 100%;
  position: absolute;
  min-height: 80%;
  right: 0%;
}

.open-cover {
  background-color: white;
  margin-left: 20px;
  width: 100%;
  text-align: center;
}

.welcome-text {
  color: black;
  display: inline-block;
  font-size: 3rem;
  transform: translateY(100%);
}

#backto-top {
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 10px; /* Place the button 30px from the right */
  z-index: 99;
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Make sure it does not overlap */ /* Increase font size */
}

@media only screen and (max-width: 768px) {
  .open-cover {
    display: none;
  }

  .welcome-text {
    display: none;
  }
  #backto-top {
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 10px;
    z-index: 99;

    /* Make sure it does not overlap */ /* Increase font size */
  }
  .home {
    height: 100%;
  }

  .catch {
    height: 100%;
    padding-left: 50%;
  }

  .logo {
    height: 100%;
  }

  .vl {
    min-height: 80%;
    width: 100%;
    margin-left: 0px;
  }

  #small-text {
    font-size: 17px;
  }

  .text {
    margin-left: 10px;
    font-size: 30px;
  }

  .logo img {
    width: 150px;
    height: 200px;
  }
}
