body {
  font-family: "Montserrat", sans-serif;
  background-color: #000;
  color: #fff;
  overflow: hidden;
  margin: 0;
} 
.main {
  display: flex;
  height: 100vh;
  padding: 0.5rem;
}

/* NAVBAR */
.navigation-bar {
  background-color: black;
  position: fixed;
  top: 0px;
  width: 98%;
  height: 48px;
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 2rem;
}
.nav-left {
  padding-left: 1rem;
}
.nav-center {
  display: flex;
  align-items: center;
  margin-left: 25rem;
}
.home {
  height: 3rem;
  width: 3rem;
  padding: 0.75rem;
  margin: 0 0 0 0.5rem;
  background-color: #ffffff1a;
  border-radius: 50%;
  border: 0;
}
.home:hover {
  background-color: #343434;
  cursor: pointer;
  transform: scale(1.07);
}
.home img {
  height: 1.5rem;
  width: 1.5rem;
}
.search-bar {
  width: 29.625rem;
  height: 3rem;
  margin: 0 0.5rem;
  border-radius: 2rem;
  background-color: #ffffff1a;
  display: flex;
  align-items: center;
}
.search-bar:hover {
  background-color: #2b2b2b;
  border: #5c5c5c solid 0.5px;
  cursor: text;
}
.search-bar:hover .search {
  background-color: #2b2b2b;
}
.search {
  height: 1.5rem;
  flex: 1;
  background-color: #2214141a;
  outline: none;
  border: none;
  font-size: 1rem;
  color: #ffffff;
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.search-icon {
  padding: 0 0.75rem;
  font-size: 1.25rem;
}
.search-icon i {
  color: #dcdcdc;
  cursor: pointer;
}
.search-icon i:hover,
.lib-icon i:hover {
  color: rgb(167, 161, 161);
}
.lib-icon {
  padding: 0 0.75rem;
  font-size: 1.25rem;
  margin-left: 3rem;
  border-left: #cdcdcd 1px solid;
}
.lib-icon i {
  color: #dcdcdc; 
  cursor: pointer;
}
.nav-btn1 {
  background-color: #fff;
  color: #000;
  border-radius: 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 0;
  
}
.nav-btn1:hover {
  transform: scale(1.04);
  cursor: pointer;
}
.nav-btn2 {
  background-color: #000;
  border-radius: 1rem;
  color: #8f8f8f;
  font-size: 0.9rem;
  font-weight: 600;
  border: 0;
  margin-left: 0.25rem;
}
.nav-btn2:hover {
  color: white;
  transform: scale(1.04);
  cursor: pointer;
}
.nav-right i {
  border: 0;
  border-radius: 50%;
  color: #656565;
  align-content: baseline;
  margin-left: 1.25rem;
}
.nav-right i:hover {
  color: #fff;
  cursor: pointer;
  align-items: center;
}
.profile-image {
  height: 3rem;
  width: 3rem;
  background-color: #ffffff1a;
  border-radius: 50%;
  border: 0;
  align-self: center;
  margin-left: 1.25rem;
}
.profile-image:hover {
  transform: scale(1.07);
  cursor: pointer;
}
.profile-image img {
   height: 2rem;
   width: 2rem;
   border-radius: 50%;
}
.nav-right{
  display: flex;
  align-items: center;
  justify-content: space-between;
}