@font-face {
  font-family: SortsMillGoudy-Regular;
  src: url(../fonts/SortsMillGoudy-Regular.ttf);
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

html {
  background: #1B1F22;
  background-size: cover;
  height: 100%;
  overflow: hidden;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

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

.save-the-date h1 {
  text-align: center;
  font-family: SortsMillGoudy-Regular;
  font-size: 4rem;
  /* font-size: 10rem; */
  font-weight: normal;
  color: #F6F7F8;
  margin: 0;
}

.save-the-date .location {
  color: #F6F7F8;
  width: 2.5em;
  height: 2.5em;
  /* width: 5rem;
  height: 5rem; */
  margin-top: 2em;
  animation: upDown 0.9s infinite alternate;
}

.save-the-date .dachshund {
  width: 120px;
  height: auto;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 12px;
  bottom: 0;
}

@media (min-width: 640px) {
  .save-the-date h1 {
    font-size: 5rem;
  }

  .save-the-date .location {
    width: 3em;
    height: 3em;
  }
}

@media (min-width: 768px) {
  .save-the-date h1 {
    font-size: 5.5rem;
  }
}

@media (min-width: 1024px) {
  .save-the-date h1 {
    font-size: 7rem;
  }

  .save-the-date .location {
    width: 4em;
    height: 4em;
  }
}