::-webkit-scrollbar{
    display: none;
}
body{
    background: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.head{
    width: 75%;
    height: fit-content;
    border-radius: 5px;
    background: url(../photos/read\ book.gif);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 15px;
    box-shadow: 4px 4px 8px rgb(179, 179, 179);
}
.head img{
    width: 32%;
    height: fit-content;
    background: #fff;
    border-radius: 50%;
    opacity: 0.7;
    margin-top: 15px;
}
.head h1{
    font-size: 23px;
    color: #fff;
    text-shadow: 4px 4px 8px rgb(121, 121, 121);
    padding: 7px;
}
.in{
    width: 75%;
    height: max-content;
    background: #fff;
    box-shadow: 4px 4px 8px rgb(179, 179, 179);
    margin: 9px;
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgb(216, 216, 216);
    border-radius: 5px;
}
.in h2,i{
    margin: 5px;
    padding: 0;
    font-size: 23px;
    width:max-content;
    background: linear-gradient(-45deg,blue,rgb(4, 219, 4),red);
    animation: textcolor 10s ease-in-out infinite;
    background-size: 400%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
@keyframes textcolor{
    0%{
        background-position: 0 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0 50%;
    }
}
#lis{
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 9px;
}
#lis #item{
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 5px;
    text-decoration: none;
    box-shadow: 4px 4px 8px rgb(179, 179, 179);
}
#lis #item img{
    height: 200px;
    width: fit-content;
}
#lis #item .contents{
    padding: 5px;
}
#lis #item .contents h1{
    color: teal;
    margin: 5px 15px;
    font-size: 32px;
}
#lis #item .contents h5{
    color: rgb(99, 99, 99);
    margin: 5px 15px;
    font-size: 19px;
}
.foot{
    width: 100%;
    height: max-content;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .foot .links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: max-content;
    
  }
  .foot .links a{
    margin: 9px;
    text-decoration: none;
    color: rgb(0, 102, 255);
    transition: 0.5s;
  }
  .foot .links a:hover{
    color: red;
  }
  .foot .flogo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: max-content;
    border-top: 2px double rgb(202, 202, 202);
  }
  .foot .flogo img{
    height: 65px;
    width: 65px;
    border-radius: 50%;
    box-shadow: 4px 4px 8px rgb(185, 185, 185);
    margin-right: 5px;
  }
  .foot .flogo h3{
    color: red;
    font-size: 20px;
    margin-left: 5px;
  }

@media(max-width:800px){
    .head{
        width: 80%;
    }
    .head h1{
        border-radius: 5px;
        font-size: 19px;
        background: rgba(87, 87, 87, 0.671);
    }
    #lis #item img{
        width: 100%;
        height: fit-content;
    }
    #lis #item .contents h1{
        font-size: 23px;
        line-height: 36px;
    }
    #lis #item .contents h5{
        font-size: 15px;
    }
    .foot .flogo img{
        height: 50px;
        width: 50px;
      }
      .foot .flogo h3{
        font-size: 17px;
      }
}