* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #fdf6e3; 
  color: #333;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 38px;
  margin-bottom: 40px;
  color: #4b3b2a; 
  text-align: center;
  letter-spacing: 1px;
  border-bottom: 3px dashed #c2a77c;
  padding-bottom: 10px;
  width: fit-content;
}

ol {
  list-style: decimal inside;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 500px;
  width: 100%;
}

li {
  background-color: #fff8e1;
  border: 2px solid #e4cfa0;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 18px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, transform 0.2s;
}

li a {
  color: #4b3b2a;
  text-decoration: none;
  font-weight: bold;
  display: block;
  user-select: none;
}

li:hover {
  background-color: #f0e2c4;
  transform: scale(1.02);
}

li:hover a {
  color: #5a3e2b;
}

.footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  margin-top: auto; 
  width: 100%; 
}
