@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
}

.topbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: whitesmoke;
}

.topbar span{
    margin: 0 10px;
}

.navbar-wrapper{
    position: sticky;
    top: 0;
    align-items: center;
    background-color: rgb(201, 199, 199); 
    z-index: 1000;
    color: white;
    width: 66.67%;
}

.navbar-item {
    padding: 6px 10px;
    text-decoration: none;
    color: black; 
    border-bottom: 2px solid transparent; 
}

.navbar-item:hover {
    color: grey;
    border-bottom: 2px solid yellow;
}


#feed img{
    width: 50%;
    height: 20%;
    margin-bottom: 10px;
}

section{
    margin: 50px 0;
}

.search{
    display: flex;
    align-items: center;
}

.search img{
    width: 150px;
    height: 50px;
    margin: 0 10px;
}

.search input{
    padding: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.profile{
    display: flex;
    align-items: center;
}

.profile img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.banner {
    background: linear-gradient(to right, #FFECB3, #FFC107);
    color: #000;
    text-align: center;
    padding: 10px 0;
}

#topics {
    text-decoration: none;
    width: 66%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 5px;
}

#topics li{
    list-style-type: none;
    border-radius: 5px;
}

.container{
    display: flex;
}

.container #feed{
    flex: 2;
    padding: 20px;
}

.container #side{
    flex: 1;
    padding: 20px;
}

.container #side ul li{
    list-style-type: none;
    margin-bottom: 8px;
}

.container #side ul li a{
    list-style-type: none;
    padding: 3px;
    text-decoration: none;
    margin: 10px 0;
    border-radius: 5px;
    color: black;
}

.container #side ul li a:hover{
    background-color: #f4f4f4;
}

.staff-picks, .rec-topics {
    margin-bottom: 20px;
}

.staff-picks h3, .rec-topics h3 {
    margin-bottom: 10px;
}

.staff-picks ul, .rec-topics ul {
    list-style: none;
    padding: 0;
}

.staff-picks ul li, .rec-topics ul li {
    margin-bottom: 5px;
}