* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

#notfound {
  position: relative;
  height: 100vh;
}

.notfound {
  max-width: 560px;
  width: 100%;
  padding-left: 160px;
  line-height: 1.1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.notfound-404 {
  position: absolute;
  left: 0;
  top: 0;
  width: 140px;
  height: 140px;
}

.notfound-404:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(2.4);
  border-radius: 50%;
  background-color: #f2f5f8;
  z-index: -1;
}

.notfound h1 {
  font-family: 'Spoqa Han Sans Neo', sans-serif;
  font-size: 6em;
  font-weight: 800;
  color: #151723;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.notfound h2,
.notfound p {
  font-family: 'Spoqa Han Sans Neo', sans-serif;
  font-size: 1.25em;
  color: #151723;
}

.notfound p {
  font-size: 1em;
  color: #999fa5;
  line-height: 160%;
}

img {
  width: 250px;
  height: 150px;
  object-fit: contain;
  float: right;
}

@media only screen and (max-width: 767px) {
  .notfound-404 {
    width: 110px;
    height: 110px;
  }

  .notfound {
    padding: 15px;
    padding-top: 110px;
  }
}

@font-face {
  font-family: 'Spoqa Han Sans Neo';
  font-weight: 400;
  src: url('https://cdn.jsdelivr.net/gh/spoqa/spoqa-han-sans@latest/Subset/SpoqaHanSansNeo/SpoqaHanSansNeo-Regular.woff2') format('woff2');
}