@import url('https://fonts.googleapis.com/css2?family=Liter&display=swap');
* {
    box-sizing: border-box;
}
header {
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    font-family: "liter", serif;
    font-weight: 400;
    font-style: normal;
}

header a {
    color: grey;
}

.navbar a {
    font-size: 18px;
    text-decoration: none;
    margin-left: 40px;
}

.logo {
    font-size: 30px;
    text-decoration: none;
    color: black;
}
.flipbook {
    display: block;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    height: 690px;
}

.flipbook img {
    
    width: 100%;
    object-fit: cover;
}
.top-dawg {
    display: block;
    margin-top: 150px;
    margin-left: 100px;
}
.thumb-b {
  float: left;
}
.thumbnail-block {
    display: inline-block;
    width: 300px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0px;
    background-color: rgb(236, 236, 236);
    border-radius: 5px;
    margin: 20px;
    box-shadow: 7px 7px 10px  rgb(125, 125, 125);
    transition: opacity 1s;
    transition: background-color 2s;
    transition: box-shadow 1s;
}

.thumbnail-block img{
    width: 275px;
    padding-top: 22px;
    padding-left: 22px;
    padding-right: 15px;
    background-color: rgba(236, 236, 236, 0);
    cursor: pointer;
}

.thumbnail-block p{
    padding: 5px;
    text-align: center;
    width: 280px;
}

.thumbnail-block:hover{
    opacity: .5;
    background-color: rgb(189, 189, 189);
    box-shadow: 2px 2px 10px  rgb(125, 125, 125);
    
}