a {
  color: #a4a4a4;
  text-decoration: none;
  color: red;
}

html {
  background: black;
  color: white;
  padding: 0px;
}

header {
  margin-top: 20px;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 400px) {
  header {
    margin-top: 40px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (min-width: 600px) {
  header {
    margin-left: 40px;
    margin-right: 40px;
  }
}

#logo_and_name {
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#logo_image {
  height: 90%;
  border: 5px solid white;
}

#logo_header {
  display: inline-block;
  margin: 0px;
  margin-left: 15px;
  color: white;
  text-align: center;
}

#join_now_button {
  display: inline-block;
  margin: 0px;
  float: right;
  width: 150px;
  height: 50px;
  border: 2px solid #c822c8;
  background: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 100%;
}

#join_now_button:hover {
  border: 2px solid white;
}

#join_now_button:focus {
  border: 2px solid white;
}

.body-slogan_header {
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 125%;
  animation: fadeInAndSlideUp 1s ease-out 0s;
}

.body-slogan_header-highlighted_text {
  color: #c822c8;
  background: linear-gradient(to right, #c822c8, crimson);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#body-screenshot_video-scroll_box {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 300vh;
  animation: fadeInAndSlideUp 1s ease-out 0s;
}

@media (min-width:961px) {
    #body-screenshot_video-scroll_box {
      height: 1200vh;
    }
}


#body-screenshot_canvas {
  display: block;
  max-height: 90vh;
  max-width: 90%;
  aspect-ratio: 880 / 1920;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0%;
}

@keyframes fadeInAndSlideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.body-slogan_header-2 {
  text-align: center;
  margin-top: 40px;
  margin-left: 20px;
  margin-right: 20px;
  line-height: 125%;
  animation: fadeInAndSlideUp 1s ease-out 0s;
}

#bottom_join_now_button {
  display: block;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 150px;
  height: 50px;
  border: 2px solid #c822c8;
  background: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 100%;
}

#bottom_join_now_button:hover {
  border: 2px solid white;
}

footer {
  margin: 0px;
  margin-top: 100px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid gray;
  padding-top: 20px;
  padding-left: 40px;
  max-width: 1200px;
}

.footer_link {
  color: #a4a4a4;
  text-decoration: none;
}
