@font-face {
    font-family: 'Roboto';
    src: url('Roboto-Regular.woff2') format('woff2'),
        url('Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/*tag*/
* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
    
   
}
body {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-template-rows: 1fr 5fr;
}

/*class*/
/*sidebar*/
.sidebar {
    background-color: #1992D4;
    grid-row: 1/3;
}
.dashboard-container {
    padding: 15px;
    display: grid;
    row-gap: 50px;
    color: white;
}
.dashboard-header {
   font-size: xx-large;
   display: flex;
   align-items: center;
   gap: 10px;
 
}
.dashboard-item-2,
.dashboard-item-3 {
    font-size: x-large;
    display: grid;
    row-gap: 15px;
   
}

.dashboard-item-2 > div,
.dashboard-item-3 > div {
    display: flex;
    align-items: center;
    gap: 10px;
}
/*header*/
.header {
    background-color:#FFFFFF ;
    padding: 30px;
    display: grid;
    grid-template-rows: 1fr 2fr;
    row-gap: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.top-header {
    display: grid;
    grid-auto-flow: column;
}
.left-top-header{
    display: flex;
    align-items: center;
    gap: 20px;
   
    
}
.left-top-header > input {
    background-color: #E2E8F0;
    border-radius: 15px;
    height: 30px;
    width:800px;
}
.right-top-header {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
    
}
.right-top-header > div {
    font-size: x-large;
    font-weight: bold;
}
.bottom-header {
    display: grid;
    grid-auto-flow: column;
    column-gap: 40px;
}
.left-bottom-header {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 100px 200px;
    align-items: center;
    column-gap: 30px;
    
}
.left-bottom-header > div {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto;
    row-gap: 10px;
}
.left-bottom-header > div > div:nth-child(1) {
    font-size: large;
    font-weight: bold;
}
.left-bottom-header > div > div:nth-child(2) {
    width: 300px;
    font-size: x-large;
    font-weight: bold;
    
} 
.right-bottom-header {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 150px 150px 150px;
    align-items: center;
    justify-content: end;
    column-gap: 30px;
}
.right-bottom-header > button {
    height: 60px;
    width: 150px;
    background-color: #1992D4;
    border-radius: 20px;
    font-size: large;
    color: white;
    font-weight: bold;
}

/*article */

.article {
    background-color: #E2E8F0;
    padding: 15px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
}
.projects-section {
    grid-row: 1/3;
    display: grid;
    grid-template-rows: 30px 1fr;
}
.projects-section-header {
    font-size: 20px;
    font-weight: bold;
}
.projects-section-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
}
.card {
    display: grid;
    height: 150px;
    padding: 20px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 6px;
    border-left: 5px solid #F0B429;
}
.card > div > p:nth-child(1) {
    font-size: 18px;
    font-weight: bold;
}
.card > div > p:nth-child(2) {
    color: #686868;
}
.card-icons {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 30px 30px 30px;
    justify-content: end;
    align-content: center;
    column-gap: 20px;
}

/*Announcements*/
.announcements {
    display: grid;
    grid-template-rows: 30px 1fr;
   
}
.announcements-header {
    font-size: 20px;
    font-weight: bold;
}

.announcements-container-contents{
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    padding: 20px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 6px;
    row-gap: 10px;
}
.announcements-contents > div {
    padding-top: 10px;
}
.announcements-contents:nth-child(2) > div,
.announcements-contents:nth-child(3) > div {
    border-top: 1px solid grey;
}
.announcements-contents > div > p:nth-child(1) {
     font-size: 16px;
     font-weight: bold;
}
.announcements-contents > div > p:nth-child(2) {
    color: #686868;
}

/*Trending */
.trending {
    display: grid;
    grid-template-rows: 30px 1fr;
}
.trending > div:nth-child(1) {
     font-size: 20px;
    font-weight: bold;
}
.trending-container-items {
    display: grid;
    padding: 20px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 6px;
}
.trending-items {
    display: flex;
    align-items: center;
    gap: 10px;

    
}
.trending-items-profiles {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.trending-items-profiles > p:nth-child(1) {
    font-weight: bold;
}
.trending-items-profiles > p:nth-child(2) {
    color: #686868;
}





