html,
body {
  background: black;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 10px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

.bg-image {
  background-image: url("./background.jpg");
  opacity: 0.75;
  background-size: cover;
  background-position: center;
  filter: blur(0.8rem);
  -webkit-filter: blur(0.8rem);
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  width: 100vw;
  height: 100vh;
}

.main {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  text-shadow: 0.3rem 0.3rem 0.5rem rgba(0, 0, 0, 0.7);
}

.main h1 {
  color: white;
  font-size: 8rem;
  font-weight: 300;
  margin: 0;
}

.main h2 {
  color: white;
  font-size: 4.8rem;
  font-weight: 300;
  margin-top: 0;
}

.main p {
  color: white;
  font-size: 3.6rem;
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .bg-image {
    filter: blur(0.4rem);
    -webkit-filter: blur(0.4rem);
  }

  .main {
    text-shadow: 0.2rem 0.2rem 0.3rem rgba(0, 0, 0, 0.6);
  }

  .main h1 {
    font-size: 4rem;
  }

  .main h2 {
    font-size: 2.4rem;
  }

  .main p {
    font-size: 1.8rem;
  }
}
