
.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
 .bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
  }

:root{
    --blue-clr: #1992d4;
}
  *{
    margin: 0;
    box-sizing: border-box;
    font-size: 1rem;
}
body {
    font-family:   "Roboto", "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",sans-serif;
  }
h2{
    font-size: 1.3rem;
}

.branding h2{
    font-size: 1.7rem;
}
nav li{
    font-size: 1.2rem;
}
h3{
    font-size: 0.9rem;
}
.container{
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-template-rows: 1fr 4fr;
    height: 100vh;
}
header{
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-column: 2/3;
    padding-bottom: 30px;
}
.sidebar{
    grid-row: 1/3;
    background-color: var(--blue-clr);
    color: #fff;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 5px;
    align-items: start;
}
.sidebar > *{
    margin: 0px 20px;
}
.branding{
    margin-top: 10px;
}
nav{
    display: grid;
    grid-template-rows: 3fr 1fr;
    gap: 15px;
}
nav svg{
    height: 20px;
    width: 20px;
}
.branding svg{
    height: 40px;
    width: 40px;

}
nav li, .branding h2{
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.sidebar svg path{
    fill: #fff;
}
nav li{
    
    margin-bottom: 20px;
}
nav ul{

    padding-left: 0;
}
nav ul:first-child{
    margin-top: 30px;
}
nav>ul{
    list-style-type: none;
}
a{
    color: inherit;
    text-decoration: none;
}
.searchbar{
    background-color: #e2e8f0;
    height: 30px;
    border: none;
    border-radius: 50px;
}
.search-icon{
    width: 20px;
    height: 20px;
    display: inline;
}
.user-setting-dashboard svg{
    width: 20px;
    height: 20px;
}
.icon{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline;
}
.search-area{
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    margin: 15px;
    margin-left: 30px;
    margin-top: 5px;
    gap: 15px;
    grid-template-columns: auto 1fr;
}
.user-setting-dashboard{
    display: grid;
    grid-auto-flow: column;
    margin: 15px;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.name{
    font-size: 1.5rem;
}
.user-setting-dashboard > *{
    margin: 5px;
}
.user-info{
    display: flex;
    align-items: center;
    margin-left: 25px;
    gap: 15px;
}
.main-user-icon{
    width: 50px;
    height: 50px;  
}
.greeting{
    font-size: 0.8rem;
}



.buttons > *{
    background-color: var(--blue-clr);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    border: none;

}
.buttons{
    display: grid;
    
    grid-auto-flow: column;
    grid-template-columns: auto auto auto;
    grid-auto-columns: auto;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

main{
    background-color: #e1e7f0;
    padding-top: 30px;
    padding-left: 10px;
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: 5fr 2fr;
}
main> * > *{
    margin-top: 15px;
    margin-right: 20px;
}
.announcements, .trending{
    grid-column: 2/3;
}
.your-projects{
    grid-row: 1/3;
    margin-left: 10px;
}

.your-project-grid{
    display: grid;
    /* margin-top: 15px;
    margin-right: 20px; */
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 20px;
}
.card{
    background-color: #fff;
    border-radius: 7px;
    box-shadow: 1px 1px 6px 0px #D3D3D3;

}
.card:hover{
    background-color: #ffffffda;
}
/* .card-high{
} */
.card-small{
    height: 190px;
    padding: 30px 20px;
    display: grid;
    align-items: space-between;
}
.card-small h2{
    font-size : 1.1rem;
}
.card-small p{
    color: #757575;
    font-size: 1rem;
}
.yellow-line{
    border-inline: solid #fcb71b 7px;
    border-inline-end: none;
}
.card-icons-area{
    display: grid;
    align-items: end;
    justify-content: end;
    grid-auto-flow: column;
    gap: 30px;
}
.announcement-area *:first-child{
    margin-top: 0;
    padding-top: 0;
}
.announcement-area{
    padding:30px;
    display: grid;
    /* grid-template-rows: repeat(3, minmax(30px, 1fr));  */
    /* word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis; */

}
.announcement-item{
    border-bottom: solid 1px #757575;
    padding: 10px 0px;
}
.announcement-area p{

    font: Arial;
    font-size: 0.8rem;
    color: #757575;
    overflow: hidden;
    text-overflow: ellipsis;

}
.trending-area{
    padding: 20px;
    display: grid;
    gap: 20px;

}
.trending-user{
    display: grid;
    grid-template-columns: repeat(2,auto);
    grid-template-rows: repeat(2,auto);
    align-items: center;
}
.trending-user .icon{
    height: 35px;
    width: 35px;
    margin-right: 15px;
 grid-row: 1/-1;
}

.trending-user *:not(.icon){
    grid-column: 2/3;
}

.user-tag{
    color: #757575;
}