body {
font-family: Arial;
background:#f4f4f4;
margin:0;
}

h2 {
  color:rgb(1, 12, 98);
}
p {
  color:blue;
}
nav{
  color:rgb(72, 72, 247);
  font-weight: bold;
  
}

li{
  color:blue;
}


header {
background:#003366;
color:white;
padding:20px;
text-align:center;
}

nav {
background:#222;
padding:10px;
text-align:center;
}

nav a {
color:white;
margin:10px;
text-decoration:none;
}

section {
padding:20px;
background:white;
margin:20px;
}

footer {
text-align:center;
padding:10px;
background:#003366;
color:white;
}
.preview {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  max-width: 500px;
  transition: background 0.2s;
}

.preview:hover {
  background: #f5f5f5;
}

.preview img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
}

.preview .info h3 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.preview .info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #666;
}
