@font-face {
  font-family: Gotham;
  src: url("/public/fonts/GothamBook.ttf");
}

@keyframes fadeInFromTop {
  0% { top: -30px; opacity: 0; }
  100% { top: 0px; opacity: 0.9; }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  50% { opacity: 0; }
  100% { opacity: 0.9; }
}

html, body {
  height: 100%;
}

html {
  font-size: 16px;
  font-family: Gotham;
}

body, a {
  color: #000000;
  text-decoration: none;
}

body {
  margin: 0;
  background-color: #F9B7B2;
}

p {
  margin: 0;
  line-height: 1em;
  overflow: visible;
}

.flex-container {
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-row {
  width: auto;
}

.flex-item {
  text-align: center;
}

.fade {
  opacity: 0.9;
  position: relative;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
}

.fade-in-from-top {
  animation-name: fadeInFromTop;
  animation-duration: 2s;
}

.fade-in {
  animation-name: fadeIn;
  animation-duration: 2.5s;
}

#pink-noir {
  background-image: url("/public/img/pink_noir.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  width: 350px;
  height: 350px;
}

#visit-shop {
  margin: 2em 1em 0.5em;
}

#visit-shop > p {
  font-size: 2em;
  line-height: 1.5em;
}

#follow-me {
  margin: 1.5em 1em 0.5em;
}

#follow-me > p {
  font-size: 1em;
  line-height: 1.5em;
}

#socials > a {
  margin: 0 5px;
  font-size: 2em;
}

