body {
    background-color: #487a6f;
    color: #b4cac4;
    font-family: monospace;
    text-rendering: geometricPrecision;
    padding-left: 2em;
    padding-right: 2em;
    
}
.content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-wrap: break-word;
    padding-bottom: 4rem;
    padding-top: 4rem;
    position: relative;
}

.title {
    font-size: 2em;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .01em;
    color: #593a68;
    display: block;
    margin-bottom: 1rem;
    margin-top: 3rem;
}
.profile-icon {
      border-radius: 50%;
      /* Makes the image circular */
      overflow: hidden;
      /* Ensures the image does not spill outside the border */
      width: 150px;
      /* Width of the circle */
      height: 150px;
      /* Height of the circle, equal to width for a perfect circle */
      display: flex;
      /* Enables centering of the image within the div */
      justify-content: center;
      /* Centers the image horizontally */
      align-items: center;
      /* Centers the image vertically */
  }
.profile-icon img {
    width: 100%;
    /* Makes the image fill the container */
    height: auto;
    /* Keeps the image aspect ratio */
}
section {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-wrap: break-word;
    padding-bottom: 0.5rem;
    padding-top: 1rem;
    position: relative;
}
section p{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
h2 {
    color: #593a68;
    margin-top: 0px;
    margin-bottom: 0px;
}
p {
    text-align: justify;
}

.books {
    padding-top: 3rem;
}
.books ul{
    text-align: center;
    margin: 0 auto;
    list-style-type: none;
    display: grid;  
    grid-template-columns: repeat(3, 1fr);
        /* grid-gap: 10px; */
        /* padding: 0; */
        /* margin: 0; */
        /* grid-row-gap: 0; */
            /* remove space between rows */
            /* grid-column-gap: 0; */
            /* remove space between columns */
            /* gap: 0; */
            /* shorthand for grid-row-gap and grid-column-gap */
}
 .book ul li {
    display: inline-block;
    vertical-align: top;}