/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Baloo 2', cursive;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fdf6e3;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
  border-radius: 10px;
  background-color: #4a7c59;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  background-color: #f4b400;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background-color: #d18f00;
}
