.container {
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.project-img{
    width: 100%;
    height: 30%;
    border-radius: 5px;
    background-color: lightslategray;

}
.profile-img{
    height: 64px;
    width: 64px;
    vertical-align: middle;
    margin-right: 10px;
    margin-left: 5%;
}
.small-profile-img{
    height: 48px;
    width: 48px;
}
.trending-img{
    height: 64px;
    width: 64px;
}

.header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.searchbar{
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
}
.searchbar input{
    width: 90%;
    box-sizing: border-box;
}
.profile{
    justify-content: center;
    align-items: center;
    display: flex;
    margin-left: 20%;

}

.greetings{
    display: flex;
}

.actions{
    display: grid;
    align-items: center;
}
.actions ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
}
.actions li{
    color: white;
    background-color: royalblue;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.sidebar {
  background-color: #800020;
  grid-row: 1/3;
  display: grid;
  grid-template-rows: 75px 400px 1fr;
  gap: 15px;
  color: white;
}
.sidebar-icon{
    height: 24px;
    width: 24px;
    fill: white;
}
.icon-text{
    display: flex;
    align-items: center;
    gap: 4px;

}
.dashboard{
    padding: 15px 0 0 15px;
    display: flex;
    align-items: center;
    font-size: 24px;
    gap: 8px;
}
.dashboard-icon{
    height: 48px;
    width: 48px;
    fill: white;

}
.nav ul{
    display: grid;
    gap:5px;
    padding-left: 15px;
}
.sidebar ul li{
    margin-bottom: 5px;
}
.settings ul{
    display: grid;
    gap:5px;
    padding-left: 15px;
}

.content {
  background-color: #E5E4E2;
  display: grid;
  grid-template-columns: 3fr 1fr;
}
.content-title{
    font-weight: bold;
    font-size: 20px;
    margin-left: 7px;
}
.content-header{
    background-color: #CD5C5C;
}
.projects{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    grid-template-rows: repeat(auto-fill,minmax(250px,1fr));
    gap:15px;
    margin:0 10px 0 10px;
}






.announcements{
    display: grid;
    grid-template-rows: 1fr 1fr;
    margin-right: 10px;
}
.announcement-container{
    display: grid;
    grid-template-rows: repeat(auto-fill,minmax(125px,1fr));
    gap: 1px;
    max-height: 500px;
}
.announcement-container p{
    color: lightslategray;
    margin-left: 15%;
}
.news-title{
    color: black;
    font-weight: bold;
}







#trending-header{
    font-size: 20px;
    color: black;
    font-weight: bold;
    margin-left: 0;

}
.trending-container{
    display: grid;
    grid-template-rows: 50px repeat(auto-fill,clamp(50px,125px,250px));
    gap: 5px;
}
.trending-profile{
    display: flex;
    justify-content: center;
    align-items: center;

}
.trending-profile p{
    font-size: 1.5em;
}
.trending-text{
    margin-left: 10%;
    white-space: nowrap;
    color: lightslategray;
    font-size: .8em
}




.card{
    text-align: center;
    background-color: white;
    border-radius: 5px;
    box-shadow: 5px 5px lightpink;
}
.small-card{
    background-color: white;
    border-radius: 8px;
}
.tiny-card{
    background-color: white;
    border-radius: 8px;
    display: grid;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#search{
    border-radius: 15px;
}
