/* minimal base */
html {
  background: #494f5c;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

body {
  margin: 0;
  color: #c6cddb;
  font-family: "Trebuchet MS", Verdana, "Segoe UI", Tahoma, sans-serif;
}

a {
  color: #c6cddb;
  text-decoration: none;
  border: none;
  transition: color 0.4s ease-out;
}

a:hover {
  color: #fff;
}

a:focus {
  outline: none;
}

/* feather icons */
.feather {
  display: inline-block;
  vertical-align: -0.125em;
  width: 1em;
  height: 1em;
}

/* animate.css (only what you use) */
@keyframes fadeIn {
  0% { opacity: 0; }
  to { opacity: 1; }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: fadeIn;
}

/* landing layout */
#spotlight {
  display: flex;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 93%;
  margin: auto;
  font-size: 1.5rem;
}

#home-center {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
}

#home-title {
  margin: 0;
  text-align: center;
}

#home-subtitle {
  margin-top: 0;
  margin-bottom: 1.5em;
  text-align: center;
  line-height: normal;
  font-size: 0.7em;
  font-style: italic;
  opacity: 0.9;
}

#home-social {
  font-size: 1.4em;
  text-align: center;
  opacity: 0.8;
}

#home-social a {
  margin: 0 0.2em;
}

#home-footer {
  text-align: center;
  font-size: 0.6em;
  line-height: normal;
  opacity: 0.6;
}

#home-footer p {
  margin-top: 0;
}
