@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Sen', sans-serif;
  margin: auto;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 165px 0 124px;
  width: 100%;
  margin: auto;
  height: 100vh;
  background-color: #131327;
  background-image: url('assets/background.jpg');
  background-blend-mode: color-dodge;
  background-size: cover;
}

.header h3 {
  text-align: center;
  color: #d1690a;
  font-size: clamp(16px, 2vw, 30px);
  font-style: normal;
  font-weight: 600;
  margin: 0;
  line-height: 36px;
}

.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-style: normal;
}

.header > h1 {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(28px, 10vw, 150px);
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #347ad0;
}

.header > p {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 150%;
  text-align: center;
  color: #aec0d4;
  flex-grow: 0;
  margin: 16px 0px;
}

.options {
  display: flex;
  flex-direction: row;
}

.buttons {
  margin-top: clamp(30px, 2vw, 50px);
}

.button.join {
  background-color: #89dd47;
  border-bottom: 0.2vw solid #cffd55;
  border-radius: .3vh;
  transition: all 0.2s ease;
  color: #fff;
  text-decoration: none;
  padding: 0.8vw 2vw;
  font-size: clamp(16px, 1.5vw, 30px);
}

.options > a {
  color: #ffffff;
  text-decoration: underline;
  margin: 0px 8px;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 150%;
}

@media screen and (max-width: 600px) {

  pre {
    font-size: 0.8rem;
    padding: 8px 12px;
    width: 100%;
  }

  body {
    width: 100vw;
  }

  .header img {
    margin-left: 0;
  }

  .installation-steps {
    width: 100%;
    box-sizing: border-box;
  }

  h1 {
    font-size: 1.6rem;
  }

  ol {
    padding-left: 20px;
  }

  li {
    margin-bottom: 5px;
  }
}
