body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: "Verdana", sans-serif;
  text-align: center;
}

/* top image (boy.png) */
.muchlove img {
  width: 650px;       /* adjust this to change size */
  height: auto;       /* keeps proportions */
  margin: 30px auto;  /* centers it with space above/below */
  display: block;
}

/* name + tagline */
h3 {
  font-weight: normal;
  font-size: 33px;
  margin: 15px 0 0 0;
}

p {
  margin: 5px 0 20px 0;
  font-size: 14px;
  color: #aaa;
}

/* links */
.links {
  margin: 15px 0;
  font-size: 22.5px;
}

.links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

.links a:hover {
  color: #ff6699;
}

/* container for links + right image */
.links-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px; /* space between links and image */
  margin: 20px auto;
  max-width: 900px;
  flex-wrap: wrap; /* ensures it doesn't break on mobile */
}

/* image on the right of links */
.links-image img {
  width: 130px;   /* adjust size */
  height: auto;
  display: block;
}

/* footer image */
.footer {
  margin-top: 30px;
}

.footer img {
  width: 80px;
  opacity: 0.8;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
