
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5dc; 
  color: #333;
  line-height: 1.6;
  text-align: center; 
  padding: 20px;
  min-height: 100vh;
  height: 100%;
}

header {
  background: #d35400;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;    
  text-align: center;
  gap: 15px; 
}
h1, h2 {
  margin-bottom: 15px;
  color: #d35400;
  font-size: 2rem;
}
h2 {
    font-size: 1.5rem;
}

button, a {
  background: #e74c3c;
  color: white;
  padding: 8px 15px;
  margin:10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

button:hover, a:hover {
  background: #c0392b;
}

img {
  max-width: 500px; 
  width: 100%;        
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
  margin-top: 15px;
}
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
}

