* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
  margin: auto;
}

body {
    background-color: #080A0D;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: auto;
}

.header {
  display: flex;
  position: absolute;
  top: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-style: normal;
  transform: translate(0, -50%);
}

.header h3 {
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  line-height: 36px;
}

.header > h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 96px;
  line-height: 150%;
  display: flex;
  font-weight: 700;
  align-items: center;
  text-align: center;
  color: #F7C126;
}

.header > p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  flex-grow: 0;
  margin: 16px 0px;
}

.socials {
  margin-top: 30px;
}

.socials .discord {
  background: #5865F2;
}
.socials .twitter {
  background: #1DA1F2;
}

.button {
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}


@media screen and (max-width: 1024px) {
    .header > h1 {
      font-size: 60px;
    }
}