@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
}
h1, h2 {
  font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

* {
    margin: 0;
    padding: 0;
    font-size: 20px;
}

.dashboard {
    display: grid;
    grid-template-columns: 1fr 4fr;
}

.header {
    display: grid;
    grid-column-start: 2;
    grid-template-columns: 3fr 2fr;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.8);
    place-items: center;
    padding-top: 30px;
    padding-bottom: 20px;
    gap: 20px;
}

.search {
    display: flex;
    padding-top: 10px;
    padding-left: 50px;
    margin-right: 150px;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.search > i {
    font-size: 30px;
    border-radius: 10px;
    background-color: #f1f5fe;
    padding: 4px 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.search > i:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
}

.user-row1 > i {
    font-size: 30px;
    border-radius: 10px;
    background-color: #f1f5fe;
    padding: 4px 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.user-row1 > i:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
}

input[type='text'] {
    width: 40vw;
    height: 35px;
    border-radius: 10px;
    font-size: 20px;
    padding: 5px 20px;
}

.user-row2 {
    place-self: start;
    padding-top: 20px;
    padding-left: 50px
}

.header button {
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 10px;
    border: none;
    background-color: #4f46e5;
    color: white;
    box-shadow: 0 2px 4px rgba(79, 70, 229, 0.3);
}

.buttons {
    display: flex;
    gap: 50px;
    width: 100%;
    justify-content: flex-end;
}

button:hover {
    background-color: #3730a3;
    box-shadow: 0 4px 8px rgba(67,56,202,0.3);
    transition: all 0.2s ease;
}

.main-content {
    display: grid;
    grid-column-start: 2;
    grid-template-columns: 3fr 1fr;
    padding: 20px;
    background-color: #f1f5fe;
    gap: 75px;
}

.sidebar {
    display: grid;
    grid-row: 1/3;
    grid-template-rows: 75px 400px 1fr;
    background-color: #4338ca;
    color: white;
    gap: 50px;
    box-shadow: 2px 0 6px rgba(0,0,0,0.5);
}

.sidebar p {
    font-size: 24px;
    font-weight: 500;
    color: #f3f4f6;
    height: 30px;
    padding: 15px 30px;
    width: 100%;
}

.sidebar p:hover {
    color: #38bdf8;
    transition: all 0.2s ease;
    background-color: rgba(255,255,255,0.1);
}

.sidebar h1 {
    place-self: start;
    font-size: 32px;
    padding-top: 20px;
}

.nav {
    display: grid;
}

.branding {
    display: grid;
    grid-template-rows: repeat(3, 75px);
}

.trends {
    display: grid;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    gap: 35px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.user {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
}

.announce-title {
    margin-bottom: -40px
}
.a-text {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.75;
}

.announce2 {
    display: grid;
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    gap: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.project-header, .announcements h1, .trending h1{
    display: flex;
    margin-bottom: 20px;
    gap: 15px;
    align-items: center;
}

.project-container{
    grid-row: 1/3;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.project {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    height: 225px;
    border-left: 10px solid #38bdf8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.project:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
}

.project-title {
    margin-bottom: 10px;
}

.project p {
    font-size: 20px;
    flex: 1;
}

p > i {
    font-size: 24px;
}

button > i {
    font-size: 20px;
}

h1 > i {
    font-size: 30px;
}

.user-row1 {
    display: flex;
    align-items: center;
    gap: 65px;
    padding: 10px;
    width: 100%;
    justify-content: flex-end;
}

.user-row2 {
    display: flex;
    gap: 20px
}

.aziz {
    border-radius: 50px;
}

.aziz-text {
    display: flex;
    flex-wrap: wrap;
    max-width: 400px;
    align-content: center;
}

.user-row2 > p {
    font-weight: 700;
}

.sidebar > h1 {
    display: flex;
    padding: 30px 30px;
    gap: 20px;
}

.project-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.project-icons > i {
    font-size: 30px;
}

.project-icons > i:hover{
    color: #38bdf8;
    transition: all 0.2s ease;
}

.trend-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tweet {
    display: flex;
    flex-wrap: wrap;
    max-width: 300px;
}

img {
    width: 80px;
    height: 80px;
}

.user-row1 > img {
    width: 65px;
    height: 55px;
}

