/* src/styles.scss */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition:
    all ease 1s,
    color 0s,
    background-color 0s,
    filter 0.5s;
}
html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
body {
  background-color: black;
  color: white;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  text-align: center;
}
app-root {
  height: 100%;
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
p,
a {
  font-size: 2.6vw;
}
a:hover {
  filter: contrast(10%);
}
#page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 9999;
  opacity: 1;
  animation: fadeOut 1s ease-out forwards;
}
@keyframes fadeOut {
  0%, 25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
