@font-face {
  font-family: 'PPPangramSans';
  font-weight: 500;
  src: local(PP Pangram Sans), url('/PPPangramSans-CompactMedium.otf') format('opentype');
}

@font-face {
  font-family: 'PPPangramSans';
  font-weight: 600;
  src: url('/PPPangramSans-CompactSemibold.otf') format('opentype');
}

@font-face {
  font-family: 'PPPangramSans';
  font-weight: 800;
  src: url('/PPPangramSans-CompactExtrabold.otf') format('opentype');
}

:root {
  font-family: PPPangramSans, Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  color: #ffffff;
  background-color: #1B1C31;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: content-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  background: linear-gradient(179.49deg, #43FF91 1.69%, #43F4FF 99.57%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  line-height: 48px;  

  letter-spacing: 0em;

  margin-top: 0px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  h1 {
    font-size: 68px;
    line-height: 68px;  
  }
}

@media (min-width: 1024px) { 
  h1 {
    font-size: 100px;
    line-height: 100px;
  }
}


main {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  
  max-width: 667px;
  padding: 0 20px;
}

.subtitle {
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0em;

  margin-bottom: 16px;
}

.description {
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0em;

  color: #BDC7D9;
}

@media (min-width: 640px) {
  .description {
    font-size: 20px;
    line-height: 28px;
  }
}

.discord-icon {
  vertical-align: middle;
}

.button {
  margin-top: 40px;
  padding: 12px 32px;
  color: #ffffff;
  background-color: #0057FF;

  border-radius: 20px;

  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  text-align: center;
}

.button_mobile {
  display: block;
  position: fixed;
  bottom: 32px;
  left: 20px;
  right: 20px;
}

.button_desktop {
  width: fit-content;
  display: none;
}

@media (min-width: 640px) {
  .button_mobile {
    display: none;
  }

  .button_desktop {
    display: block;
  }
}

