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

main{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: sans-serif;
  background-color: #9f7dff;
  color: white;
}

main h1{
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 3rem;
}
main h1 span{
  color: #fff;
  background: -webkit-linear-gradient(180deg, #000000, #bf00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

main h2{
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

main p{
  font-size: 1rem;
  margin-bottom: 1rem;
}


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: #8956ea;
  font-size: 18px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#logo{
  margin-bottom: 40px;
}

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

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

}

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

}
