.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 2vh 2vw 2vh 2vw;

    margin: 2vh 1vw;
}

.dashboard-container {
    display: flex;
    flex-direction: row;
    height: 30vh;
    width: auto;
    gap: 20px;
}

.card#description {
    flex: 1;
    height: 100%;
    font-size: 1.3em;
}

.profile-pic {
    height: 100%;
    width: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 10px 0 25px rgba(0, 0, 0, 0.2);
}

.tech-container {
    display: flex;
    justify-content: space-evenly;
    width: auto;
    gap: 35px;
    margin-top: 20px;
}

.skill-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.skill-group h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.3em;
    color: #f38ba8;
}

.flex-tech {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.tech-box {
    width: 45px;
    height: 45px;
    background-color: transparent;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.tech-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-box:hover,
.project-logo:hover {
    transform: scale(1.1);
}

.current-project {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.current-project h3 {
    text-align: center;
    margin-bottom: 1em;
    font-size: 1.3em;
    color: #f38ba8;
}

.project-media {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.project-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "logo desc"
        "icons icons";
    gap: 30px;
    width: 100%;
    align-items: start;
}

.project-logo {
    grid-area: logo;
    display: block;
    max-width: 120px;
    max-height: 120px;
    background-color: transparent;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.project-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
}

.project-info {
    grid-area: desc;
    flex: 1;
}

.current-project:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project-icons {
    grid-area: icons;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .content-wrapper {
        gap: 40px;
    }

    .dashboard-container {
        flex-direction: column-reverse;
        height: auto;
        align-items: center;
    }

    .card#description {
        width: 100%;
        text-align: center;
    }

    .profile-pic {
        height: 150px;
        width: 150px;
        margin-bottom: 20px;
    }

    .tech-container {
        flex-direction: column;
        gap: 30px;
    }

    .skill-group {
        width: 100%;
        padding: 0;
    }

    .project-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .project-info {
        text-align: center;
    }
}
