body, html {
  font-family: 'Fredericka the Great', cursive, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom right, rgb(178,169,145), rgb(198,189,165));
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  height: auto;
}

.website-container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

h1 {
margin-top: 20px;
text-align: center;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content p {
    font-size: 1.5em;
    font-family: 'Noto Sans', sans-serif;
    text-align: center;
    margin: 0;
    color: darkslategrey;
    transition: opacity 0.3s ease;
}


.poet-figure {
  position: abosulte;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  will-change: transform;
  transition: all 0.3s ease;
  transform-origin: center bottom;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 30px;
    padding: 10px 15px;
    background: linear-gradient(45deg, #7f3521, #404c49);
    border-radius: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 0.8em;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    text-decoration: none;
    margin: 20px 0;
  }
  .icon:hover {
    transform: translateY(-5px);
    box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.2);
  }