
/* Your existing CSS rules remain unchanged */
*{
    margin: 0;
    padding: 0;
    user-zoom: none;
    font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}
:root {
  --mindaro: #E0E88Cff;
--black: #000000ff;
--raisin-black: #1B1E27ff;
--rich-black: #0E1015ff;
--rich-black-2: #0F1116ff;
--plum-web: #EB92D5ff;
--slate-blue: #7370BAff;
--eerie-black: #191919;
--eerie-black-2: #232425;
--davys-gray: #4D4D4D;
--auburn: #972D2D;
--zomp: #53AE92ff;
}
body {
  background: #fff;
  height: 96vh;
  width: 100vw;
  overflow-y: hidden;
}
nav {
  height: 5em;
  display: none;
  justify-content: space-between;
  align-items: center;
}
nav .logo {
  color: var(--slate-blue);
  font-weight: 800;
  font-size: 1.5em;
  text-transform: uppercase;
}
nav a {
  color: #fff;
  background: var(--raisin-black);
  width: 10em;
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  border-radius: .4em;
  
}
main {
  height: 100%;
  width: 100%;
  display: flex;
}
.sidebar1 {
  width: 4vw;
  padding-left: 1.5vw;
  padding-right: 1.5vw;
  height: 100%;
  background: #000;
  padding-top: 3%;
  overflow: scroll;
}
.feed {
  width: 55vw;
  height: 100%;
}
.sidebar2 {
  width: 25vw;
  height: 92%;
  position: relative;
  top: 3%;
  right: 1em;
  padding-top: 2%;
  padding-bottom: 1%;
  padding-left: 1vw;
  padding-right: 1vw;
  overflow: scroll;
   background: var(--raisin-black);
  border-radius: 1em;
}
.revenue, .viewers {
  color: #fff;
  display: flex;
    /* justify-content: space-between; */
    gap: 1em;
    align-items: center;
}
input#searchInput {
    height: 2em;
    border: none;
    padding: .5em;
    padding-inline: 1em;
    width: 90%;
    border-radius: 9999px;
    margin-bottom: 1em;
}
input:focus {
  outline: none;
}
.popup {
  height: 12em;
  padding-top: 2em;
  padding-bottom: 2em;
  padding-left: 5%;
  padding-right: 5%;
  width: 90%;
  border-radius: .8em;
  background: url(images/octen.gif);
  background-size: cover;
  color: #999;
  display: flex;
  flex-direction: column;
}
.popup h2 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: .5em;
}
.popup p {
  font-size: .8em;
  margin-bottom: 4em;
}
.popup a {
  color: var(--raisin-black);
  background: #fff;
  height: 2em;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: .4em;
  flex: 2;
}
.recent-presentations {
  height: 30em;
  padding-top: 2em;
  padding-bottom: 2em;
  width: 100%;
  border-radius: .8em;
  margin-top: 1em;
  background: #000000;
  overflow: scroll;
  position: relative;
}
.recent-presentations .timeline-item::before, .recent-presentations .timeline-item::after {
  background: #fff !important;
}
.feed {
  margin: 20px auto;
  overflow: scroll;
  
}
*::-webkit-scrollbar {
  display: none;
}
.timeline-item {
    position: relative;
    margin-bottom: 4em;
    display: block;
  }
  
  .timeline-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    width: 2px;
    height: 116%;
    background-color: #222;
  }
  
  .timeline-item::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #222;
    /* border: 2px solid #fff; */
}
.timeline-item .text {
    margin-left: 3em;
    color: #222;
  }
  .timeline-item .thumbnail {
    margin-left: 3.2em;
    border-radius: .6em;
    overflow: hidden;
    margin-top: .8em;
  }
.timeline-item .image {
    width: 90%;
    height: 20em;
    border-radius: .3em;
    overflow: hidden !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
  
  .image .img {
    width: 100%;
    height: auto;
    transition: ease-in-out .2s;
}
.multi-page {
  position: absolute;
  top: 1em;
  right: 1em;
}
i.bi.bi-union {
    color: #333;
}
.profile {
  display: flex;
  gap: .8em;
  align-self: center;
}
.profile img {
  height: 2em;
  width: 2em;
  border-radius: 50%;
}
.profile a {
  color: #222;
  text-decoration: none;
  font-size: .9em;
  font-weight: bold;
}
.text h1 {
  font-weight: bold;
  color: #999;
  font-size: 1em;
  padding-right: 2em;
}
.post-link {
  text-decoration: none;
}

.user {
  border-radius: 1em;
  display: flex;
  align-items: center;
  gap: .5em;
  text-decoration: none;
  margin-bottom: 1em;
  color: #999;
  justify-content: center;
}
.user img {
  height: 2.5em;
  width: 2.5em;
  border-radius: .4em;
  background: #f25;
  
}
a {
  text-decoration: none;
}
.post-link h3 {
  font-weight: bold;
}
.head-tag {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
}

.user-count-p {
  display: flex;
    align-items: center;
    gap: 1em;
}
.description {
  color: #444;
  font-size: .9em;
  line-height: 1.4em;
  margin-top: .5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3; /* Limiting to 3 lines */
  /* Following properties for wider browser support */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}






@media screen and (max-width: 767px) {
 .sidebar1, .sidebar2 {
   display: none;
 } 
 .feed {
   width: 100%;
 }
  nav {
    padding: 0 2em;
    display: flex;
  }
  .text p {
    display: none;
  }
  .timeline-item .image {
    width: 90%;
     height: 15em;
  }
}