@font-face {
  font-family: lavish;
  src: url(../fonts/LavishlyYours-Regular.ttf);
}
@font-face {
  font-family: pirata;
  src: url(../fonts/PirataOne-Regular.ttf);
}
@font-face {
  font-family: lexend;
  src: url(../fonts/Lexend-Regular.ttf);
}

* {
  padding: 0;
  margin: 0;
  font-family: pirata, lavish, lexend;
}

html {
  overflow-y: scroll;
  scrollbar-color: rgba(255, 255, 255, 0.25) rgba(0, 0, 0, 0.9);
  scrollbar-width: thin;
}

#anchor {
  position: fixed;
  bottom: 0;
  left: 0;
  pointer-events: none;

  width: clamp(150px, 20vw, 400px);
  height: auto;
}

.fancy-letter {
  display: inline-block;
  color: red;
  font-size: xx-large;
  margin-top: 4px;
  width:1.5rem;
  text-align: center;
  border: 1px solid red;
}

body {
  background-image: url(../images/dark_sea_background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

main {
  display: flex;
  flex-direction: column;
  margin: 0 auto;

  width: 60rem;
  min-height: 100vh;

  padding: 0 0 1rem 0;

  background-color: rgba(25, 35, 90, 0.9);
  color: whitesmoke;
}

main #main-content {
  display: flex;
  flex-direction: column;
  background-color: rgba(25, 35, 90, 1);
  padding: 1rem 0;
}

main p {
  font-size: larger;
  margin: 0.5rem 2rem;
}

main header h1, main footer {
  font-family: lavish;
}

main header {
  background-color: whitesmoke;
  margin-top: 0;
  padding: 0.5rem 0.5rem 0.5rem 3rem;
  line-height: 8rem;
  font-size: xx-large;
  color: rgba(25,35,90,1);
}

main footer {
  text-align: center;
  font-size: xx-large;
  margin: 0 2rem 2rem;
  padding-top: 2rem;
  border-top: 2px solid whitesmoke;
}