
body {
  background-color: #a58985;
  background-image: url("/images/backgrounds/PMFPPLyric.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  color: white;
  font-family: 'LibreFranklin'
}


.border {
  border-style: solid;
  width: fit-content;
  border-color: #FFFFFF;
  padding: 10px; /* Optional: adds space between content and border */
}

.oval-box {
  width: 900px;  /* Long dimension */
  height: 100px; /* Short dimension */
  background-color: blue; /* To make the shape visible */
  border-radius: 50%; /* Creates the elliptical shape */
}


.transparent {
  background-color: rgba(165, 137, 133, 0.9);
}

a:link {
  color: #FFFFFF;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: #FFFFFF; /* Purple color for visited links */
}


