/* Landing page */
h1 {
  margin: 0 0 0 0;
}

h2 {
  margin: 0 0 1rem 0;
  font-weight: normal;
}

#description {
  position: relative;
}

.intro {
  height: 100%;
  width: auto;
  text-align: right;
  display: flex;
  flex-direction: row;
}

#landing {
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

#landing .filled-button {
  border-bottom: 2px solid white;
  border-right: 2px solid white;
}

#landing-portrait {
  height: 100vh;
}

.landing-button-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.landing-button-group a {
  font-size: 3rem;
  padding: 1%;
}

.landing-button-group .filled-button {
  margin-right: 2rem;
}

.landing-page {
  display: flex;
  flex-direction: row;
  height: 100vh;
  justify-content: center;
}

.lower {
  bottom: 0;
  right: 0;
  position: absolute;
  width: auto;
}

.lower h3 {
  text-align: left;
  margin: 0 0 0 auto;
  visibility: hidden;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: relative;
  z-index: -1;
}

/* SVG */

/* Portrait */
#Shades {
  display: none;
}

#Star_Eyes {
  display: none;
}

.upper {
  position: relative;
  right: 0;
  width: auto;
}

.upper a {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

/* For vertical screen users */
@media only screen and (max-width: 600px) {
  #landing-portrait {
    position: relative;
    top: 10%;
  }

  .upper a {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 1000px) {
  .intro {
    align-items: center;
    flex-direction: column-reverse;
    justify-content: start;
    text-align: center;
  }

  .landing-button-group {
    justify-content: center;
    width: 100vw;
  }

  #landing-portrait {
    height: 60%;
  }

  .lower {
    display: flex;
    left: 0;
    justify-content: center;
  }

  .upper {
    margin: 1.5rem 0;
  }
}

/* For horizontal screen users */
@media only screen and (min-width: 1650px) {
/* for large desktop screens */
  .page {
    width: 78vw;
  }

  .upper a {
    font-size: 3rem;
    border-radius: 20px;
  }

  .lower h3 {
    visibility: visible;
    margin-top: auto;
  }
}