.monoton-regular {
  font-family: "Monoton", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.modak-regular {
  font-family: "Modak", system-ui;
  font-weight: 400;
  font-style: normal;
}
.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
  font-size: calc(0.625rem + 0.3vw); /* Start with a base that scales */
}

body {
  background-image: linear-gradient(to bottom right, rgb(140, 40, 187), rgb(173, 138, 214));
  background-attachment: fixed;
  background-size: cover;
}

h1 {
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 3rem); /* Min 1.2rem, preferred 2vw, max 3rem */
}

h2 {
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 2rem); /* Min 1.2rem, preferred 2vw, max 3rem */
}

p {
    text-align: center;
    font-size: clamp(1rem, 1.3rem, 2rem);
}

#navBar {
    display: flex;
    justify-content: center;
    align-content: center;
}

#navBarItem {
    font-size: clamp(1.5rem, 2rem, 3rem);
    color: rgb(180, 158, 31);
    background-color: rgba(255, 255, 255, 0.577);
    border-radius: 1.5rem;
    padding: clamp(.3rem, .75vw, 1rem);
    display: inline-block;
    margin: 0 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.218)
}

#centerDisplay {
  width: 50%;
  margin: 5vh auto;
  padding: clamp(1rem, 1.5vw, 2.5rem);
  background-color: rgba(255, 255, 255, 0.577);
  border-radius: clamp(0.5rem, 1vw, 1rem);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  outline: 0.2rem solid rgba(0, 0, 0, 0.397);
}

#welcomeMessage {
  text-align: center;

  font-size: clamp(3rem, 6.25vw, 8rem); /* Min 3rem, fluid with 6.25vw, max 8rem */
  padding-top: 2rem; /* Using rem for consistency, approximately 32px from 16px base rem */
  color: rgb(180, 158, 31);
  text-shadow: 0.2rem 0.2rem 0px rgb(144, 126, 25),
               0.4rem 0.4rem 0px rgb(108, 95, 18),
               0.6rem 0.6rem 0px rgb(72, 63, 12),
               0.8rem 0.8rem 1rem rgba(0, 0, 0, 0.6);
}

#currentlyDoing {
  width: 70%;
  margin: 2vh auto;
  padding: clamp(.5rem, .75vw, 1.5rem);
  background-color: rgba(185, 239, 253, 0.508);
  border-radius: clamp(0.5rem, 1vw, 1rem);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  outline: 0.2rem solid rgba(0, 0, 0, 0.397);
}

.currentList {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.2rem, 1.5rem, 2.5rem);
}

#badges {
    text-align: center;
    padding: clamp(.5rem, .75rem, 1rem);
}