body {
    font-family: "Poppins", sans-serif;
    background-color: #04153f;
    color: #1c1e21;
    margin: 0;
    overflow-x: hidden;
}

.profile-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.profile-header {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.cover {
    height: 250px;
    background: linear-gradient(to right, #00e791);
    background-size: cover;
    background-position: center;
    font-family: "Playwrite AU QLD", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 28px;
    padding: 20px;
    display: flex;
    text-align: end;
    align-items: center;
    position: relative;
}

.profile-info {
    display: flex;
    align-items: flex-end;
    padding: 0 30px 20px 30px;
    margin-top: -80px;
    position: relative;
}

.profile-picture {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 5px solid #04153f;
    object-fit: cover;
}

.user-details {
    margin-left: 20px;
    padding-bottom: 10px;
}

.user-details h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.profile-actions {
    padding-bottom: 10px;
}

.profile-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-card,
.task-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #dddfe2;
    padding-bottom: 10px;
}

.parent {
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: white;
    flex-wrap: wrap;
}

.child1,.child2,.child3,.child4 {
    border-radius: 20px;
    width: calc(max(45%, 220px));
    height: 200px;
    border: 1px solid #04153f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.child1{
    background-color: #fa852bed;
}
i{
    font-size: 70px;
    color: rgb(255, 255, 255);
}
p{
    font-size: 60px;
}
.c1{
    width: 100%;
    height: 100svh;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}
.c11{
    width: 50%;
    height: 100%;
}


.child2{
    background-color: #5dd7ff;
}
.c2{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}
.c22{
    width: 50%;
    height: 100%;
}

.child3{
    background-color: 	#dc72ff;
}
.c3{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}
.c33{
    width: 50%;
    height: 100%;
}


.child4{
    background-color: #fb5b7b;
}
.c4{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}
.c44{
    width: 50%;
    height: 100%;
}

@media (max-width: 768px) {
    .profile-body {
        grid-template-columns: 1fr;
    }
    .profile-info {
        flex-direction: column;
        align-items: center;
        margin-top: -100px;
        text-align: center;
    }
    .user-details {
        margin: 15px 0 0 0;
    }
    #quote {
        position: absolute;
        top: 10px;
        height: 50%;
        font-size: 20px;
        text-align: center;
        display: flex;
        align-items: center;
    }
}