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

html, body {
  overflow: hidden;
}
body {
  position: relative;
}

@font-face {
  font-family: myCustomFont;
  src: url(assets/PixelArt.ttf);
}

.header > h1 {
  padding-top: 40px;
  font-size: 7vw;
}

.title {
  font-family: myCustomFont;
  padding-top: 20px;
  transform: scaleX(0.7);
  letter-spacing: 0.3em;
}

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

  font-family: myCustomFont;
  /* padding-top: 20px; */
  transform: scaleX(0.6);
  letter-spacing: 0.3em;
}

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

  font-family: myCustomFont;
  /* padding-top: 20px; */
  transform: scaleX(0.7);
  letter-spacing: 0.3em;
}

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

  font-family: myCustomFont;
  /* padding-top: 20px; */
  transform: scaleX(0.6);
  letter-spacing: 0.3em;
}

.bg-image {
  background-image: url(./assets/dw-background.png);

  /* Add the blur effect */
  filter: blur(0.8vh);
  -webkit-filter: blur(0.8vh);
  
  transform: scale(1.1); 

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  width: 100%;
  margin: auto;
  border: #fbab40;
  background-color: #242628;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 0px;
  background-origin: padding-box;
  z-index: -1;
}
.learn-more {
  width: 90vw;
}


.container {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10vw 0 7vw;
  width: 100%;
  margin: auto;
  color: white;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 900px;
  width: 80%;
  padding: 20px;
  text-align: center;
  
  max-width: 800px;
  margin: 0 auto;
  padding: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 5vh);
}

  @media screen and (max-width: 600px) {
    .header > h1 {
    font-size: 60px;
    }
    
    .title {
    transform: scaleX(0.5);
    letter-spacing: 0.15em;
    }
    
    .header h3 {
    font-size: 18px;
    line-height: 28px;
    transform: scaleX(0.5);
    letter-spacing: 0.15em;
    }
    
    .header > p {
    font-size: 16px;
    transform: scaleX(0.5);
    letter-spacing: 0.15em;
    }
    
    p {
    font-size: 16px;
    transform: scaleX(0.5);
    letter-spacing: 0.15em;
    }
    
    .options {
    flex-direction: column;
    align-items: center;
    }
    
    .options > a {
    font-size: 20px;
    margin: 8px 0;
    }
    
    .logo > img {
    width: 120px;
    height: 48px;
    }
    
    .learn-more > a > button {
    width: 150px;
    margin-top: 32px;
    height: 45px;
    font-size: 14px;
    line-height: 16px;
    }
    
    .learn-more > p {
      padding-top: 15vh;
      font-size: 10px;
    }
    
    .container {
      height: calc(100vh);
    }
  }
    