@charset "utf-8";
/* CSS Document */
/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;700&display=swap');
/* END FONTS */
body {
  background-color: #0e00b1;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, .2);
}
h1, h2, h3, h4, h5 {
  font-weight: 400;
  margin: 0 auto;
}
h1, h2 {
  text-transform: uppercase;
}
h1 {
  font-size: 8vw;
  line-height: 0.68;
  margin-bottom: 5vh;
}
h2 {
  font-size: 1.8em;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 0 rgba(0, 0, 0, .2);
  padding-bottom: 1em;
}
h3 {
  font-size: 1.2em;
}
h5 {
  margin-bottom: 8vh;
}
p {
  font-size: 1.6em;
  font-weight: 700;
  line-height: 0.8;
  margin: 40px auto;
}
a {
  text-decoration: none;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  color: #ffd700;
}
a:hover {
  text-decoration: none;
  color: #ff8300;
}
a:hover .arrow {
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}
.content {
  margin: 0 auto 20vh;
  width: 90vw;
}
.logo {
  margin: 8vh auto 5vh;
  width: 200px;
}
.arrow {
  border: solid #ffd700;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}
.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}