.container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-template-rows: 1fr 5fr;
    grid-template-areas: 
        "sidebar header"
        "sidebar content";
}

/* Header */

.header {
    background-color: #E3B261;
    grid-area: header;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-areas: 
        "search user"
        "user-greeting actions";
}

.search {
    grid-area: search;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.search input {
    width: 80%;
    height: 30px;
    border: none;
    border-radius: 5px;
    padding: 0 10px;
}

.user {
    grid-area: user;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-right: 80px;
}

.user-greeting {
    grid-area: user-greeting;
    display: grid;
    grid-template-columns: repeat(2, 200px);
    grid-template-rows: repeat(2, 60px);
}

.user-greeting h2 {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #000000;
    align-self: end;
    margin: 0;
}

.user-greeting p {
    font-size: 1rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #000000;
    align-self: start;
}

.actions {
    grid-area: actions;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.actions button {
    cursor: pointer;
    width: 100px;
    height: 60px;
    border: none;
    border-radius: 30%;
    background-color: #E3B261;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

img[alt="search"],
img[alt="notification"] {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

img[alt="user"] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #E3B261;
    margin: 10px;
}

img[alt="user-g"] {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #E3B261;
    margin: 10px;
    grid-row: 1 / 3;
    justify-self: end;
}

/* Sidebar */

.sidebar {
    background-color: black;
    grid-area: sidebar;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    padding: 30px;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 500;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #E3B261;
    margin: 0;
}

.logo img {
    width: 40px;
    height: 40px;
}

.menu,
.support {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
    cursor: pointer;
}

.sidebar img {
    justify-self: end;
}

.sidebar p {
    font-size: 1rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #E3B261;
    margin: 0;
}

/* Content */

.content {
    background-color: #d7ad69;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5) inset;
    grid-area: content;
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 20px;
    padding: 30px;
}

.projects {
    grid-row: 1 / 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    height: 300px;
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
    background-color: #E3B261;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    grid-template-areas: 
        "title title"
        "des des"
        "git git";
        --op-value: 0.2;
}

.card:hover {
    --op-value: 0.8;
}

.card > h2 {
    grid-area: title;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #000000;
    margin: 0;
    text-shadow: rgb(255, 255, 255) 0 0 10px;
}

.card > p {
    grid-area: des;
    font-size: 1rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #000000;
    margin: 0;
    text-shadow: rgb(255, 255, 255) 0 0 10px;
}

.calc {
    position: relative;
    z-index: 1;
}

.calc::before {
    content: "";
    background-image: url(imgs/ss.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    opacity: var(--op-value);
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.etch {
    position: relative;
    z-index: 1;
}

.etch::before {
    content: "";
    background-image: url(imgs/screen.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    opacity: var(--op-value);
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rps {
    position: relative;
    z-index: 1;
}

.rps::before {
    content: "";
    background-image: url(imgs/newrps1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    opacity: var(--op-value);
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.smap {
    position: relative;
    z-index: 1;
}

.smap::before {
    content: "";
    background-image: url(imgs/smap.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    opacity: var(--op-value);
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.suf {
    position: relative;
    z-index: 1;
}

.suf::before {
    content: "";
    background-image: url(imgs/s2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    opacity: var(--op-value);
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.view-project {
    align-self: end;
    grid-area: git;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.view-project img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: purple 0 0 10px 0;
}

.view-project img:hover {
    box-shadow: purple 0 0 20px 0;
}

.announcement {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
    background-color: #E3B261;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.announcement > h3 {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #000000;
    margin: 0;
}

.announcement > ul {
    list-style: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.announcement > ul > li {
    font-size: 1rem;
    font-weight: 500;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #000000;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: #000000 1px solid;
}

.announcement > ul > li:nth-child(3) {
    padding-bottom: 0;
    border-bottom: none;
}

.socials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    border-radius: 10px;
    background-color: #E3B261;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.socials img {
    width: 30px;
    height: 30px;
    margin: 10px;
    cursor: pointer;
}

.socials div {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #E3B261;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.socials h2 {
    grid-column: 1 / 3;
    align-self: center;
    justify-self: center;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #000000;
    margin: 0;
}