* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Averia Sans Libre', sans-serif; /* Set the font to Averia Sans Libre */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack the title and letter vertically */
  background-color: #450f37; ;
  color: rgb(203, 233, 179);
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px; /* Space between the title and the changing letter */
}

#center-letter {
  font-size: 10rem;
  font-weight: bold;
}
