/* ---- main css ---- */

html {
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
  user-select: none;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body {
  margin: 0;
  width: inherit;
  height: inherit;
  overflow: hidden;

  /* overscroll-behavior-y: none; */
}

.solis {
  background-color: #640202;
  background-image: -webkit-linear-gradient(
    -72deg,
    #640202,
    #801515 15%,
    #d46a6a 85%
  );
}

.noctis {
  background-color: #090a0f;
  background-image: -webkit-linear-gradient(118deg, #1b2735 0%, #090a0f 100%);
}

#container {
  padding-left: 8px;
  padding-bottom: 3rem;
  position: absolute;
  display: table;
  height: 100%;
  margin-left: 5%;
  margin-right: 5%;
  overflow: hidden;
  z-index: 10;
}

#main {
  display: table-cell;
  vertical-align: middle;
  margin-bottom: inherit;
  padding-bottom: inherit;
}

#name {
  margin-top: 0.67em;
  margin-bottom: 0.2rem;
  color: #fff;
  font-size: 38pt;
  font-weight: inherit;
}

#details {
  margin: 0;
  color: #f2f2f2;
  font-size: 18pt;
  font-weight: inherit;
  font-style: italic;
}

#links {
  padding-top: 0.35em;
}

a {
  text-decoration: none;
  margin-right: 0.25em;
}

img {
  filter: invert(100%);
  height: 0.95em;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  transition: all 300ms ease-in-out;
}

img:hover {
  transform: translate(0, -2px);
  transition: all 200ms ease-in-out;
}

@media only screen and (orientation: portrait) and (max-device-width: 1080px) {
  #name {
    font-size: 11.5vw;
  }

  #subtitle {
    font-size: 5vw;
  }
}

@media only screen and (orientation: landscape) and (max-device-height: 720px) {
  #name {
    font-size: 13.5vh;
  }

  #subtitle {
    font-size: 7vh;
  }
}

/* ---- dots css ---- */

#dot-plane {
  position: absolute;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  z-index: 5;
}

/* ---- animations ---- */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-duration: 3s;
}
