html, body {
  margin: 0;
  padding: 0;
  background-color: #ECEBEB;
}

#navbar {
  background-color: #000000;
  color: #000000;
  display: flex;
  justify-content: flex-end;
  min-height: 50px;
}

#navtext {
  margin: 10px;
  color: white;
  font-family: "Chewy", system-ui;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
}

#whatdudeTitle {
  display: flex;
  flex-direction: column;   /* ← important */
  align-items: center;      /* ← center horizontally */
  margin: 40px;
}


#whatdudeTitleText {
  font-family: "Chewy", system-ui;
  font-weight: 50;
  font-style: normal;
  text-decoration: none;
  font-size: 45px;
  margin:0px;
}

.lines {
  display: block;       /* Forces line break after each image */
  width: 300px;         /* Adjust to your desired width */
  height: auto;         /* Keeps the image proportional */
  margin: 0px auto;     /* Centers image horizontally, adds spacing vertically */
}

