* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Faculty Glyphic", sans-serif;
  letter-spacing: 1px;
  margin: 0;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #cccccc;
  background-color: #091621;
}
a {
  color: #cccccc;
  text-decoration: none;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #8888;
  border-radius: 4px;
  cursor: pointer;
  background-color: #8881;
}

a:hover,
a:active {
  opacity: 1;
  color: #cceeff;
  border-color: #8ab9;
  background-color: #8ab2;
}

.logo_cont {
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 6;
}

.logo_cont img {
  width: 100%;
}

.video_cont {
  width: 100%;
  max-width: 640px;
  height: auto;
  aspect-ratio: 16 / 9;
}

.video_cont iframe {
  width: 100%;
  height: 100%;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  margin: 0 0 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
h1 > span:first-of-type {
  margin-bottom: 8px;
}

.blurb {
  margin: 8px 0;
}

.blurb > * {
  margin-bottom: 4px;
}
h2 {
  margin: 0;
}
.hidden {
  display: none;
}

.button_cont {
  width: 100%;
  max-width: 400px;
  height: 60px;
  margin: 8px 0 16px;
}
.button_cont > * {
  width: 100%;
  height: 100%;
}
.button {
  width: 100%;
  height: 100%;
}

.video_cont {
  margin: 8px 0 16px;
}

.follows {
  display: flex;
  width: 100%;
  max-width: 1200px;
  justify-content: space-around;
  flex-wrap: wrap;
}
.follows > a {
  margin: 8px 0;
  min-width: 160px;
  max-width: 160px;
  height: 40px;
}

.footer {
  margin: 16px 0 0;
  font-size: 12px;
  opacity: 0.75;
}
