body{
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f4f4f4;
    color: #333;
}

h1{
    text-align: center;
    color: #004080;
}

form{
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
    gap: 10px;
}

input, textarea{
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button{
    padding: 10px;
    background-color: #004080;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover{
    background-color: #0066cc;
}

nav{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

ul{
    list-style: none;
    padding: 0;
}

li{
    background: white;
    margin: 10px auto;
    padding: 10px;
    border-radius: 5px;
    max-width: 400px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.event-section {
  background-color: #f0f4f8;
  border: 1px solid #ccc;
  padding: 20px;
  margin: 20px auto; /* Center it horizontally */
  border-radius: 8px;
  max-width: 400px;
  width: 90%; /* Responsive design */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center; /* Center the content inside */
}

.event-section h2 {
  margin-top: 0;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.event-section p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.event-section .btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 18px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.event-section .btn:hover {
  background-color: #0056b3;
}
