html{
    margin: 0;
    height: 100%;
}
body{  
    background-color: #262829;
}
.body_container{
    border: 3px solid transparent; /* required to define border width */
    border-image: linear-gradient(to right, var(--ACCENT), plum,var(--Mint) );
    border-image-slice: 1; /* ensures full gradient is used */;
    margin-left: 15%;
    margin-right: 15%;
}
.title{
    width: 100%;
    text-align: center;

    color: white;
    font-size: 80px;
    margin-top: 5%;
}
.bio_container{
    display: flex;
    justify-content: space-around;
    
    margin-top: 5%;
    align-items: center;
}
.bio{
    color: white;
    font-size: larger;
    line-height: 150%;
    width: 50%;
}
.profile{
    height: 300px;
    width: 300px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    overflow: hidden;

}
.profile img{
     
    height: 200%;
    overflow: hidden;
    width: 100%;
    object-fit: cover;
}

.udemy{

    height: 300px;
    width: 400px;
    border-radius: 10%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}
.udemy img{
    max-width: 100%;
}
.image_container{
    margin-top: 3%;
    margin-bottom: 3%;
    display: flex; gap: 5%;
}
.image{
    height: 300px;
    width: 400px;
    border-radius: 10%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    
}
.image img{
    height: 300px;
    width: 400px;
    object-fit: cover;
}
.hobby_container{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}