:root {
    --blue-cl: #1992D4;
    --gray-cl: #E0E3EB;
    --orange-cl: #F0B52D;
    --gray-text: #7B7A7B;
}

* {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

.full-container {
    display: grid;
    grid-template-columns: 1fr 4fr;
    min-height: 100vh;
}

.sidebar {
    grid-column: 1/2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--blue-cl);
    color: white;
    font-weight: bold;
    padding: 15px;
}

.sidebar ul {
    line-height: 2rem;
    list-style-type: none;
}

.container {
    grid-column: 2/3;
    display: grid;
    grid-template: 3/2;
    grid-template-columns: 3fr 1fr;
}

.header {
    grid-column: 1/3;
    display: grid;
    grid-template-columns: 1;
    grid-template-rows: 1fr 1fr;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
}

.header-head {
    display: flex;
    font-weight: bold;
    gap: 10em;
    align-items: center;
}

.header-head .search {
    flex-grow: 1;
}

.user, .search {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.search input {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 10ch;
    border-radius: 10rem;
    border: none;
    background-color: var(--gray-cl);
    height: 3ch;
    padding: 1ch;
}

.header-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.header-body-left .name {
    font-size: x-large;
}

.header-body-right {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.header-body-right button {
    border: none;
    border-radius: 10rem;
    background-color: var(--blue-cl);
    font-weight: bold;
    color: white;
    padding: 10px 20px;
}

.projects, .announcements, .trending {
    background-color: var(--gray-cl);
}

.projects{
    grid-row: 2/4;
    padding: 15px;
}

.announcements {
    grid-column: 2/3;
    grid-row: 2/3;
    padding: 15px;
}

.trending {
    padding: 15px;
}

.projects-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30ch, 1fr));
    gap: 15px;
    margin-top: 5px;
}

.announce-content, .trend-content {
    display: grid;
    grid-template-rows: repeat(auto-fit, 1fr);
    padding: 15px;
}

.container>*>h1 {
    font-size: large;
}

.projects-card .title {
    font-size: large;
    font-weight:  bold;
    color: black;
}

.projects-card {
    background-color: white;
    padding: 20px 2rem;
    border-radius: 10px;
    box-shadow: inset 5px 0px var(--orange-cl);
    box-shadow: 3px 3px -3px 3px black;
    color: var(--gray-text);
}

.announce-content, .trend-content {
    margin-top: 5px;
    background-color: white;
    border-radius: 10px;
    display: grid;
    grid-template-rows: repeat(auto-fit, 1fr);
    padding: 15px;
    gap: 15px;
    color: var(--gray-text);
}

.announce-content .title {
    font-weight: bold;
    color: black;
}

.trend-content .title {
    color: black;
}

.icon-svg {
    width: 1em;
    height: 1em;

    vertical-align: -0.125em;
    fill: currentColor;
    display: inline-block;
}

.icon-avt {
    width: 2em;
    height: 2em;

    vertical-align: -0.125em;
    fill: var(--orange-cl);
    display: inline-block;
}