*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
nav{
    display: flex;
    width: 100%;
    background-color:cadetblue;
    position: relative;
    justify-content: space-between;
    text-align: center;
    padding: 15px 30px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
nav .icon{
    font-size: 30px;
    font-weight: 800;
    color: black;
    cursor: pointer;
}
nav ol{
    display: flex;
    list-style: none;
    margin: 5px;
}
nav ol li{
    margin: 5px;
}
nav ol li a{
    color: black;
    font-size: 20px;
    text-decoration: none;
    text-transform: capitalize;
    padding: 15px;
}
nav ol li a:hover{
     background-color: lightblue;
     color: blue;
}
nav .search_box{
    display: flex;
    margin: auto;
    height: 35px;
    line-height: 35px;
}
nav .search_box input{
     border: none;
     outline: none;
     background-color: lightblue;
     height: 100%;
     padding: 0 10px;
     font-size: 20px;
     width: 350px;
}
nav .search_box span{
    color: black;
    font-size: 18px;
    background-color:lightblue;
    height: 100%;
    padding: 10px;
    position: relative;
    cursor: pointer;
    z-index: 1;
}
nav .search_box span:hover{
    color:lightblue;
}
nav .search_box span::after{
    height: 100%;
    width: 0%;
    content:'';
    background: red;
    position: absolute;
    top: 0%;
    right: 0%;
    z-index: -1;
    transition: 0.3s;
}
nav .search_box span:hover::after{
    width: 100%;
}
header{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    color: aliceblue;
    text-align: center;
    padding: 20px;
}
.header{
    background-image: url(backgound1.jpg);
    width: 100%;
    padding-bottom: 0%;
    align-self: center;
}
p{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 12px;
    margin-top: 50px;
} 
.img{
    width: 150px;
    margin-top: 100px;
    border-radius: 10%;
    margin-right: 10px;
}
.img1{
    width: 150px;
    margin-top: 100px;
    border-radius: 10%;
    margin-right: 10px;
}
.img2{
    width: 150px;
    margin-top: 100px;
    border-radius: 10%;
    margin-right: 10px;
}
.img3{
    width: 150px;
    margin-top: 100px;
    border-radius: 10%;
    margin-right: 10px;
}
.img4{
    width: 150px;
    margin-top: 100px;
    border-radius: 10%;
}
div.scrollmenu{
    background-color:white;
    overflow: auto;
    white-space: nowrap;
    margin: 20px auto 10px auto;
    text-align: center;
    width: fit-content;
}
div.scrollmenu a{
    display: inline-block;
    color: black;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}
div.scrollmenu a:hover{
    background-color:gray;
}
.category-page_wrapper{
    margin-left: 415px;
    max-width: 1300px;
}
.category-page_inner{
    box-sizing:content-box;
    padding: 0 12px;
}
.publication-list{
    align-items: end;
    display: grid;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    gap: 50px 30px;
    grid-auto-flow: row dense;
    grid-template-columns: repeat(6,1fr);
    padding: 30px 0 60px;
}
.publication-card_wrapper{
    line-height: 1.5;
    min-width: 0;
    position: relative;
}
.publication-card_link{
    color: #000;
    display: block;
    outline: none;
    position: relative;
    text-decoration: none;
}
.publication-card_cover-wrapper{
    margin-bottom: 10px;
}
.publication-card_img{
    display: block;
    width: 100%;
}
.publication-card_title-container{
    left: 0;
    padding-top: 8px;
    position: absolute;
    top: 100%;
    width: 100%;
}
.publication-card_title{
    font-size: .75rem;
    font-weight: 500;
}
footer{
    background-color: blanchedalmond;
    width: 100%;
    padding: 50px;
    text-align: center;
    margin-top: 100px;
}
footer i{
    padding: 5px;
    margin: auto;
}


