* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html, body, main{
  min-height: 100vh;
  font-size: 16px;
}

main{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: sans-serif;
  background: #1f94f9;
  background: linear-gradient(320deg, #0e3d60 0%,  #1f94f9 100%);
  color: white;
  padding: 0 1rem
}

main h1{
  font-size: 5em;
  font-weight: bold;
  margin-bottom: 2rem;
  color: white
}

main h2{
  font-size: 1.5rem;
  margin-bottom: 1rem;
  max-width: 600px;
}

main p{
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.5;
}


main a {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  padding: 13px 23px;
  background: #1f94f9;
  font-size: 18px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.notfound a:hover {
  color: #ff6300;
  background: #211b19;
}

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

}

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

}
