/* Typography */
@font-face {
  font-family: "Futura Std";
  src: url("./FuturaStd-CondensedExtraBd.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura Std";
  src: url("./FuturaStd-CondExtraBoldObl.otf") format("opentype");
  font-weight: 800;
  font-style: oblique;
  font-display: swap;
}


* {
  box-sizing: border-box;
}

html,


a{
  color: rgb(50, 87, 238);
  font-style: oblique;
}

body {
  display: block;
  min-height: auto;
  padding: 64px;
  text-align: center;
  background-color: #efefef;
  color: #000;
  font-family: "Futura Std", "Futura Condensed Extra Bold", "Futura", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.5;
}

.logo {
  margin: 0 auto;
  text-align: center;
  width: 64px;
  height: auto;
  display: block;
  margin: 0 auto;
}

h1 {
  margin: 0 0 16px;
  line-height: 1;
}

p {
  margin: 0 0 6px;
}


@media(max-width: 600px) {
  body {
    padding: 16px;
    margin-top: 32px;
  }
}