/* General Reset-ish */
body {
  margin: 0;
  font-family: Verdana, sans-serif;
  background: #ffe4f2; /* light pink */
  color: #333;
}

/* Header */
header {
  background: #ffb6c1; /* cute pink banner */
  text-align: center;
  padding: 20px;
  border-bottom: 4px solid #ff69b4;
}

/* Main layout with three sections */
.layout {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr; /* left, middle, right */
  gap: 20px;
  padding: 20px;
}

/* Intro (left side) */
.intro {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px #aaa;
}

/* Feature (middle) */
.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px #aaa;
}

.feature img {
  max-width: 200px;
  border-radius: 10px;
}

/* Links (right side) */
.links {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px #aaa;
}

.links ul {
  list-style: none;
  padding: 0;
}

.links li {
  margin: 10px 0;
}

.links a {
  text-decoration: none;
  color: #ff1493;
  font-weight: bold;
}

/* Footer (badges) */
footer {
  background: #ffb6c1;
  text-align: center;
  padding: 20px;
  border-top: 4px solid #ff69b4;
}

.badges img {
  margin: 5px;
  height: 31px; /* classic web badge size */
}
