<style>
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
}

/* Container styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Grid styles */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.card h3 {
  margin-top: 10px;
}

/* Welcome message styles */
.welcome-message {
  margin: 20px;
  padding: 20px;
  background-color: #f4f4f9;
  border-radius: 8px;
  text-align: left;
}

.welcome-message h1 {
  color: #333;
  font-size: 2em;
  margin-bottom: 10px;
}

.welcome-message p {
  color: #666;
  font-size: 1.2em;
  line-height: 1.5;
}

.welcome-message a {
  color: #0077cc;
  text-decoration: none;
}

.welcome-message a:hover {
  text-decoration: underline;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 10px;
}

ul li strong {
    display: inline-block;
    width: 150px; /* Adjust as needed */
}


/* Responsive styles */
@media (max-width: 768px) {
  .grid {
      grid-template-columns: 1fr; /* Full width cards on smaller screens */
      padding: 10px;
  }

  .card {
      padding: 5px;
  }

  .card h3 {
      font-size: 0.8em;
  }
}