* {
  padding: 0;
  margin: 0;
}
:root {
  --primary-color: #d1d5db;
  --secondary-color: #54565b;
  --button-color:#111827;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
svg{
  fill: black;
}

.profile-pic {
  width: 50px;
  height: 50px;

  border-radius: 30px;
}
.container {
  display: grid;
  height: 100vh;
  grid-template-columns: 1fr 5fr;
  grid-template-rows: 1fr 5fr;
}
.header {
  display: grid;
  grid-template-rows: 1fr 1fr;
  background-color: rgba(13, 13, 13, 0.098);
  backdrop-filter: blur(100px);
  /* box-shadow: 4px 2px 4px black; */
  box-shadow: 8px 1px 9px 0px black


  /* gap: 10px; */
}
.search-and-profile-container {
  display: grid;
  grid-template-columns: 4fr 1fr;
}
.search-bar {
  display: flex;
  align-items: center;
  padding: 1em 3em;
  min-width: 200px;
  max-width: 700px;
}
.search-bar input {
  margin-left: 1em;
  padding: 10px;
  border: none;
  border-radius: 20px;
  width: 100%;
  height: 30px;
  background-color: rgba(182, 178, 178, 0.373);
}
.profile {
  display: flex;
  min-width: 250px;
  gap: 1.5em;
  align-items: center;
}
.greeting-and-button-container {
  padding: 10px 3em;
  display: flex;
  justify-content: space-between;
}
.greeting-container {
  display: flex;
  gap: 15px;
  align-items: center;
}
.button-container {
  display: flex;
  gap: 20px;
  align-items: center;
}
.button-container button {
  width: 70px;
  height: 40px;
  border-radius: 7px;
  background-color: var(--button-color);
  color: white;
  border: none;
  cursor: pointer;
}
.button-container button:hover {
  background-color: #3b82f6;
}

/* Side bar  */

.sidebar {
  grid-row: span 2;
  background-color: var(--primary-color);
  
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  backdrop-filter: blur(10px);
}
.sidebar svg {
  fill: black;
  width: 35px;
}
.sidebar-heading {
  display: flex;
  align-items: center;
  padding-top: 10px;
  gap: 20px;
}
.sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.sidebar > ul > li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.sidebar > ul > li:hover {
  cursor: pointer;
}
.sidebar > ul > li:hover svg {
  fill: var(--secondary-color);
}
.sidebar-settings {
  list-style: none;
}

/* Main  */

.main{

 display: grid;
    gap: 15px;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: 50px 1fr 50px 1fr;
}
.project-cards-container{
    grid-area: 2/1/5/2;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2,minmax(200px,1fr));
    /* margin: 0.5rem; */
    height: 70vh;
    justify-items: center;
}
.project-cards-container-heading,.announcements-container-heading,.trending-container-heading{
    margin: 20px 30px 0 30px;
  }
.card{
    border-left: 3px solid rgba(9, 9, 9, 0.279);
    padding: 1rem 1rem 0 1rem; 
    line-height: 1.6;
    background-color: rgba(13, 13, 13, 0.098);
    backdrop-filter: blur(100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0px 1px 3px 0px black
}
.card-options{
    margin-top: auto;
    align-self: flex-end;
    display: flex;
    gap: 15px;
}
.card-options svg{
  width: 30px;
}
.announcements-container,.trending-container{
    padding:  1rem; 
    margin:0.52em;
    margin-right: 2rem;
    background-color: rgba(13, 13, 13, 0.098);
    backdrop-filter: blur(100px);    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 10px;
    height: fit-content;
}
.trending-item{
    display: flex;
    gap: 15px;
    align-items: center;
}