/* Reset default spacing and remove list styles */
body,
h1,
h2,
p,
ul,
li,
button,
input,
textarea {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
  padding-left: 20px; /* for custom bullet positioning */
}
li {
  margin-bottom: 5px;
}

/* General styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  line-height: 1.6;
}
h1 {
  font-size: 2.5em;
  color: #000;
  margin-bottom: 5px;
}
h2 {
  font-size: 1.2em;
  color: #010101;
  margin-bottom: 10px;
}

/* Header */
header {
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

/* Navigation */
nav ul {
  display: flex;
  justify-content: center;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  text-decoration: none;
  color: #060606;
  font-size: 1.2em;
  padding: 5px 10px;
  transition: color 0.3s ease, background-color 0.3s ease;
}
nav ul li a:hover {
  color: #445ab6;
  background-color: white;
  border-radius: 5px;
}

/* Container styles */
.container {
  text-align: center;
  padding: 30px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}
.header h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}
.description p {
  font-size: 16px;
  color: #555;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.image-container {
  text-align: center;
  max-width: 250px;
}
.image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  .zoom-image {
    transition: transform 0.3s ease;
  }

  .zoom-image:hover {
    transform: scale(1.2);
  }
}

/* Info Section */
.info-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}
.box {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  width: 200px;
  text-align: center;
}

/* Content Blocks */
div {
  margin: 25px;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  margin: 0 auto;
}
form label {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 5px;
  display: block;
}
form input,
form textarea {
  width: 90%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  background-color: #f4f4f9;
}
form textarea {
  resize: vertical;
}
form button {
  width: 95%;
  padding: 10px 20px;
  font-size: 1.1em;
  background-color: #8ced8c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
form button:hover {
  background-color: #8ced8c;
}

/* Quiz Section */
#question-container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 20px auto;
}
#options button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: #030608;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}
#options button:hover {
  background-color: #0056b3;
}

/* General Button */
button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #28a745;
  color: white;
  transition: 0.3s;
}
button:hover {
  background-color: #59ff7d;
}
/* Daily Quiz Styles */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background: #f0f0f0;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
}

.quiz-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.quiz-box {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.quiz-box h2 {
  margin-top: 0;
  text-align: center;
}

.options button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background-color: #04080d;
  color: white;
  cursor: pointer;
}

.options button:hover {
  background-color: #b7c7d8;
}

.next-button {
  display: block;
  width: 100%;
  padding: 10px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
}

.next-button:hover {
  background: #218838;
}
.daily-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  gap: 20px;
}

.daily-info > div {
  flex: 1 1 45%;
  padding: 10px;
}

.daily-info h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
