@font-face {
  font-family: "Market Deco";
  src: url("MarketDeco.eot");
  src: url("MarketDeco.eot?#iefix") format("embedded-opentype"),
    url("MarketDeco.woff2") format("woff2"),
    url("MarketDeco.woff") format("woff"),
    url("MarketDeco.ttf") format("truetype"),
    url("MarketDeco.svg#MarketDeco") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: #f8f8f8;
  font-family: 'Market Deco';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width:100%;
  height:100%;
}

.title--container{
  margin:auto;
  display:flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

a {
  text-decoration: none;
  font-weight: bold;
  color:#696969;
}

h1 {
  font-size:10vw;
  text-align: center;
}

h3 {
  font-size:3.5vw;
  letter-spacing: 0.4em;
  text-align: center;
  color:#2b2a28;
}

h4 {
  font-size:2.5vw;
  letter-spacing:0.2em;
}

.loading--container {
  display:flex;
  align-items: center;
  justify-content: space-evenly;
  padding:1.5rem;
}

img {
  width:10%;
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

footer {
  align-self:flex-start;
  color:#696969;
  font-size:1.5vw;
  padding:1rem;
}

@keyframes spin {
  from {
      transform:rotate(0deg);
  }
  to {
      transform:rotate(360deg);
  }
}