.container {
  padding: 0 5%;
}

header {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  color: #373a3c;
  font-weight: 700;
}


header .logo span {
  color: #373a3c;
  font-weight: 100;
}

header a {
  text-decoration: none;
  color: #0a7aff;
}

.main-content-area {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.main-content-area h1 {
  font-size: 9vw;
  font-weight: 700;
  text-align: center;
  color: #373a3c;
  max-lines: 1;
}

.main-content-area p {
  color: #373a3c;
  margin-top: 5vh;
  font-size: 1.1rem;
  text-align: center;
}

.main-content-area p a {
  text-decoration: none;
  color: #0a7aff;
}

footer {
  height: 10vh;
  text-align: center;
}

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

  .container {
    padding: 0 20px;
  }

  .main-content-area h1 {
    font-size: 5vh;
    font-weight: 700;
    color: #373a3c;
    text-align: center;
  }

  .main-content-area p {
    margin-bottom: 10vh;
    font-size: 4vw;
    padding: 0 20px;
    text-align: center;
  }
}


/* @media screen and (min-width: 540px) {
  .container {
    padding: 0 20px;
  }

  .main-content-area h1 {
    font-size: 45px;
    font-weight: 700;
    color: #373a3c;
  }

  .main-content-area p {
    margin-bottom: 10vh;
    font-size: 3vw;
    padding: 0 20px;
    text-align: center;
  } 
} */
