body {
  background-color: #1e1e2e; /* dark gray-purple tone */
  color: #cdd6f4;            /* soft white-blue text */
  font-family: Verdana, sans-serif;
  margin: 0;
  padding: 2rem;
  text-align: center;
}

h1 {
  color: #a6e3a1; /* minty green */
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
  margin: 1rem 0;
}

a {
  color: #89b4fa;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

li {
  margin: 0.5rem 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 6px;
}

img {
  margin-top: 1.5rem;
  width: 100px;
}

button {
  background-color: #89b4fa;
  color: #1e1e2e;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #74c7ec;
}

.circular-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover; /* ensures the image fills the circle without squishing */
  display: block;
}