*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'oswald', monospace;
  background-color: #ffffff;
  color: #1a1a1a;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.gif-wrap {
  width: 420px;
  height: 315px;
  border-radius: 4px;
  overflow: hidden;
}

.gif-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 3rem;
}

.constructing {
  font-family: 'Oswald', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
}