body{
    margin: 0;
    background-color: #decdac;
}
.popup{
    width: 90%;
    max-width: 1200px;
    height: 700px;
    background-color: #27292d;
    border-radius: 24px;
    position: fixed;
    font-family: serif;
    padding: 8px;
    top: 0;
    left: 0;
    box-shadow: 0 5px 4px 2px rgba(0, 0, 0, 0.3);
    transform: translate(25%, 31%) scale(0);
    transition: all 300ms ease-in-out;
}

.popup-open .popup{
    transform: scale(1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.close-icon{
    font-size: 48px;
    font-weight: 700;
    position: absolute;
    right: 15px;
    top: -5px;
    cursor: pointer;
}   


.about-me{
    display: flex;
}

.about-me-text{
    width:600px;
    height: 450px;
    /* border: 2px solid rgb(255, 255, 255); */
}
.about-me-image{
    width:700px;
    height: 680px;
    /* border: 2px solid rgb(255, 255, 255); */

}

.about-me-title{
    font-size: 48px;
    /* margin-bottom: 20px;
    margin-left: 100px;
    margin-top: 20px; */
    text-align: center;
    color: red;
}

.about-me-description{
    margin-left: 20px;
    font-size: 24px;
}

.about-me-skills{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-me-skills ul{
    padding: 0;
    margin-top: 20px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}

.about-me-skills li{
    /* font-family: "nunito","serif"; */
    border: 1px solid #999;
    border-radius: 50px ;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    margin: 10px;
    width: 150px;             /* Width of each li element */
    text-align: center;
}

.about-me-stack{
    position: relative;
    left: 200px;
    top: 30px;
    font-size:xx-large;
    color: red;
}

.about-me-icons{
    display: flex;
    position: relative;
    top: 40px;
    left: 90px;
    gap:50px;
}

.overlay{
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}


.popup-open .overlay{
    display: block;
}


