.hero-page{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    background: var(--accent-bg-color);
    min-height: 100vh;
    width: 100%;
    padding-top: 100px;
}
.hero-page h1{
    font-size: 44px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    /* padding: 8px 24px; */
    border-radius: 100px;
    display: inline-block;
    letter-spacing: 2px;
    line-height: 1.1; 
    margin-bottom: 24px;
}
.hero-page h2{
    font-size: 35px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    background: #fff;
    padding: 8px 24px;
    border-radius: 100px;
    display: inline-block;
    letter-spacing: 1px;
    line-height: 1.1; 
    color: var(--section-bg-color);
    margin-bottom: 24px;
}
.hero-page a{
    font-size: 19px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    background: var(--accent-color);;
    padding: 8px 24px;
    border-radius: 100px;
    display: inline-block;
    line-height: 1.5; 
    color: #000;
}







/* ABOUT ME */




.about-me{
    background-color: var(--section-bg-color);
    color:var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 50px 100px ;
    min-height: 60vh;
    scroll-margin-top: 100px;
    gap: 50px;
}
.about-me img{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: 30px;
}

.about-me div {
    width: 50%;
}


.about-me h1{
    font-size: 48px;
    font-weight: 700;
    background: var(--secondary-color);
    padding: 10px 50px;   
    border-radius: 10px;

}
.about-me h2{
    font-size: 36px;
}
.about-me p{
    color: var(--p-color);
}