.p404 {
  --main-color: #e4ddc4;
}

body {
  min-height: 100dvh;
  display: flex;
  overflow-x: hidden;
}

.t404 {
  font-size: 8em;
}

.description {
  font-size: 1em;
}

.btn {
  width: fit-content;
  padding: 0.5rem 1rem;
  margin: 1.5rem 0;
  border: var(--main-color) 1px solid;
  color: #0f0f0f;
  text-decoration: none;
  border-radius: 10px;
  transition: 200ms linear;
}

.btn:hover {
  background-color: var(--main-color);
}

.p404 .column {
  padding: 5rem;
  display: grid;
  place-content: center;
}

.column2 {
  background: var(--main-color);
  place-items: center;
}

.column2 svg {
  width: 50%;
  fill: #e0f7fa;
}

@media (min-width: 1024px) {
  .t404 {
    font-size: 10vw;
  }

  .description {
    font-size: 1.2vw;
  }

  .btn {
    font-size: 1.1vw;
  }
}

@media (max-width: 768px) {
  body {
    flex-direction: column-reverse;
  }
}
