body {
  height: 100vh;
}

.logo {
  display: flex;
  justify-content: center;
}

main {
  height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
}

.error-container {
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  color: #0079ac;
}

.error-msg-container {
  margin: auto auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.error-code {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
}

.error-btn {
  background-color: #f26f21;
  padding: 8px 24px;
  border-radius: 8px;
  color: white;
  font-size: 1.15rem;
  width: fit-content;
}

.error-header {
  color: rgb(51 65 85);
  font-size: 2rem;
  line-height: 2.25rem;
}

.error-description {
  color: rgb(100 116 139);
}
