@font-face {
  font-family: 'Montserrat';
  src: url('./Montserrat-VariableFont.ttf') format('truetype');
}

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background-color: #090217;
  box-sizing: border-box;
  font-family: 'Montserrat';
  font-size: 16px;
}
* {
  box-sizing: border-box;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px;
  overflow: hidden;
  background: url('./bg--404--figure--mobile.svg') no-repeat bottom center;
}
.content-text {
  position: relative;
  z-index: 10;
}
.blur {
  position: absolute;
  z-index: 5;
  top: -256px;
  right: -300px;
  width: 512px;
  height: 600px;
  background-color: #b679f2;
  opacity: 0.3;
  filter: blur(260px);
  transform: rotate(45deg);
}
.title {
  margin: 0;
  font-size: 42px;
  font-weight: bold;
  color: white;
}
.text {
  margin-top: 16px;
  line-height: 24px;
  color: white;
}
.button {
  display: inline-flex;
  align-items: center;
  height: 56px;
  padding: 12px 40px;
  background-color: #b679f2;
  border-radius: 8px;
  text-decoration: none;
  color: #090217;
}
.image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.image.is-mobile {}
.image.is-desktop {
  display: none;
}

@media (min-width: 800px) {
  .content-text {
    max-width: 400px;
    margin-inline: auto;
  }
}
@media (min-width: 1200px) {
  .content {
    display: flex;
    align-items: center;
    padding: 115px;
    background: url('./bg--404--figure--desktop.svg') no-repeat right center;
  }
  .blur {
    width: 600px;
    height: 800px;
    top: auto;
    right: auto;
    bottom: -200px;
    left: -150px;
  }
  .content-text {
    max-width: 500px;
    margin-inline: 0;
  }
  .title {
    font-size: 72px;
  }
  .text {
    margin-top: 24px;
    font-size: 20px;
    line-height: 30px;
  }
  .image {
    left: auto;
    right: 100px;
    transform: none;
  }
  .image.is-mobile {
    display: none;
  }
  .image.is-desktop {
    display: inline-block;
  }
}
@media (min-width: 1300px) {
  .image {
    right: 200px;
  }
}
