@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

*{
    padding: 0%;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --primary-color: red;
    --text-color: #727171;
}
html{
    font-size: 10px;
}
body{
    font-family: Inter, sans-serif;
    background-color: black;
    color: white;
}
img{
    width: 100%;
}
a{
    text-decoration: none;
    color: white;
}
.description{
    margin-top: 1rem;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-color);
}
.Title{
    color: var(--primary-color);
    font-weight: 800;
    font-size: 3rem;
    text-transform: uppercase;
}
.pre_title{
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 500;  
}
.item_title{
    font-size: 1.6rem;
    color: white;
    font-weight: 500;
    margin: 0.8rem 0;
}
.sub{
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 400;
}
.container{
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    padding: 5rem;
    background: black;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
@media only screen and (max-width: 768px) {
    .container{
        width: 100%;
        grid-template-columns: 1fr;
        padding: 3rem;
        gap: 7rem;
    }   
}
.profile{
    grid-column: 1 / -1;
    margin-bottom: 2rem
}
.g1,
.g2{
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.g3{
    max-width: 700px;
    width: 100%;
    margin: auto;
    grid-column: 1/-1;
    display: flex;
    flex-direction: row;
    gap: 5rem;
    justify-content: left;
}
.profile_container {
    display: flex;
    gap: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid gray;

}

.profile_container .profile_img
{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.profile_container .profile_img img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .profile_img{
    
    max-width: 250px;   
} */

.first{
    color: white;
    font-weight: 200;
    font-size: clamp(2rem,8vw,4rem);
    text-transform: uppercase;
    display: block;
    margin-bottom:  -0.8rem;
}
.last{
    color: var(--primary-color);
    font-weight: 700;
    font-size: clamp(2.5rem,15vw,7rem);
    text-transform: uppercase;
    display: block;
}
.profile_title{
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;  
}

@media screen and (max-width: 768px) {
    .profile_container{
        flex-direction: column;
    }
}
.skill_list{
    margin-top: 1rem;
    margin-left: 2rem;
    line-height: 2;
}
.edu_item{
    margin-top: 2rem;
}
.work{
    margin-top: 2rem;
}
.interest_items{
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-color);
}
.interest_items svg{
    width: 2rem;
    margin-top: 1rem;
}