body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f0f0f0;
  color: #333;
  margin: 0;
  padding: 0;
}

h1 {
  color: #2c3e50;
  text-align: center;
  margin-top: 20px;
}

p {
  text-align: center;
  font-size: 1.2em;
  margin: 20px auto;
  max-width: 600px;
}

a {
  color: #3498db;
  text-decoration: none;
}

.btn {
  display: inline-block;
  background-color: #3498db;
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  margin: 10px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background-color: #2980b9;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #2980b9;
  transition: background-color 0.3s ease;
}

a:hover {
  text-decoration: underline;
  color: #2980b9;
}

h2 {
  color: #84c7f3;
  text-align: center;
  margin: 30px 0;
}

.buttons {
  text-align: center;
  margin: 40px 0;
  background: none;
  box-shadow: none;
  padding: 20px;
  max-width: none;
}

.buttons:hover {
  box-shadow: none;
}

div {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
  transition: box-shadow 0.3s ease;
}

div:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
