*{
    margin: 0;
    padding: 0;
}
section{
    height: 100%;
    background: radial-gradient(#ae9cb0 ,rgb(97, 59, 106));
}
h1{
    font-family: "Irish Grover", serif;
    font-size: 80px;
    text-align:center;
    color: rgb(194, 202, 235);
    background: linear-gradient(to right, #330000 0%, #6600CC 50%, #6600CC 50%, #6600CC 50%, #6600CC 50%, #330000 100%);
    --webkit-background-clip: text;
    --webkit-text-fill-color: transparent;
}

p{
    font-family: "Shadows Into Light", serif;
    display: flex;
    justify-content: space-evenly;
    font-size: 26px;
}
img{
    height: 300px;
    width:300px;
    border-radius: 10px;
}

.images{
    display: flex;
    justify-content: space-around;
    margin-top:30px;
}

@media (max-width: 600px){
    section{
       display: flex;
       flex-direction: column;
       height: 100%;
    }   
    h1{
       font-size: 40px;
    }
    .author-description{
       display: flex; 
       flex-direction: column;
    }
    p{
       font-size: 20px;

    }
    .images{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; }
    .books , .table , .think{
        padding-top:10px;
    }
   }
