
*,
:after,
:before {
  box-sizing: inherit;
}

html {
  font-size: 16px;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: Helvetica, arial, sans-serif;
  background: #000 center 25% no-repeat;
  background-size: cover;
  background-image: url('/background-mobile.jpg');
}

@media (min-width: 768px) {
  body {
    background-image: url('/background-desktop.jpg');
  }
}

.content {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.logo {
  top: 5%;
  left: 5%;
  width: 30%;
  max-width: 220px;
  position: absolute;
}

.navigation {
  top: 5%;
  right: 5%;
  position: absolute;
}

.navigation a {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  margin-left: 0.75rem;
  text-decoration: none;
  font-family: georgia, serif;
}

@media (min-width: 768px) {
  .navigation a {
    margin-left: 2rem;
    font-size: 1.75rem;
  }
}

.share {
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  padding: 2.5% 0 2.5rem;
  position: absolute;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8) 50%);
}

.share a {
  width: 3rem;
  height: 3rem;
  display: flex;
  margin: 0 0.75rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}


@media (min-width: 768px) {
  .share a {
    margin: 0 1rem;
  }
}

.share a.facebook {
  fill: #fff;
  background: #1777f2;
  padding: 0.625em 0 0;
}

.share a.instagram {
  fill: #fff;
  padding: 0.375em;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.share a.spotify {
  fill: #20b954;
}

.share a svg {
  fill: inherit;
  height: 100%;
}

