* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #fff7ed;
  color: #24160f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-content: center;
  gap: 18px;
  padding: 28px;
  text-align: center;
}

img {
  justify-self: center;
}

h1 {
  margin: 0;
  color: #3a1f14;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
}

p {
  max-width: 30rem;
  margin: 0 auto;
  color: #6f4c3f;
  font-size: 1.05rem;
  line-height: 1.55;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

a {
  min-width: 120px;
  border: 1px solid #d7a77e;
  border-radius: 8px;
  padding: 11px 14px;
  background: #ffffff;
  color: #64351f;
  font-weight: 700;
  text-decoration: none;
}

a:focus-visible,
a:hover {
  border-color: #a95729;
  color: #3a1f14;
  outline: none;
}
