

body {
  margin: 0;
  min-height: 100vh;
  color: #333;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 400;
  line-height: 44px;
}
h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 200;
  line-height: 36px;
}
.container,
.w-container,
.w-layout-blockcontainer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
}

.poem {
    white-space: pre-line;
}

.aside {
  width: auto;
  max-width: 450px;
  height: auto;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: static;
}
.about,
.bio,
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bio-image {
  width: 160px;
  height: 160px;
  margin-bottom: 24px;
  border-radius: 0;
  object-fit: cover;
}
.paragraph {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
#contact-aside {
  display: none;
}
#contact-navlink,
#contact-main {
  display: block;
}
@media screen and (min-height: 980px) and (min-width: 1300px) {
  #contact-aside {
    display: block;
  }
  #contact-navlink,
  #contact-main {
    display: none;
  }
}
@media screen and (max-width: 479px) {
  .aside {
    padding-left: 20px;
    padding-right: 20px;
  }
}