/* general */
html, body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  background-color: #e5ebf3;
  background-image: url("../pics/splash-mobile.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  body {
    background-image: url("../pics/splash-desktop.png");
    background-position: center;
  }
}

.splashscreen {
  opacity: 0;
}

.social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0.5rem;
}
.social a {
  display: block;
  text-decoration: none;
  margin: 0.5rem;
  transition: opacity 0.15s linear;
}
.social a:hover {
  opacity: 0.5;
}

/*# sourceMappingURL=splash.css.map */
