*{
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: georgia;
    color: whitesmoke;
    
}

body{
    background:linear-gradient(to right,rgb(167, 131, 226),rgb(116, 221, 240)
    ,rgb(241, 207, 93),rgb(121, 223, 121),rgb(230, 143, 215));
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container{
    position: relative;
    width: 100%;
    max-width: 1000px;
    min-height: 1000px;
    display: grid;
    grid-template-columns:1fr 2fr;
    box-shadow: 0 10px 10px rgb(51, 50, 50);
    margin:55px;
    
}


.imgBx img{
    border-radius: 50%;
    border:4px solid rgb(229, 149, 231);
}
.profile-text{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    color: whitesmoke;
    
}
.profile-text h1{
    text-align: center;
    font-size:1.5em;
    line-height:40px;
}

.profile-text span{
    font-size:0.8em;
}
hr{
    height:4px;
    background:linear-gradient(to right,rgb(167, 131, 226),rgb(116, 221, 240)
    ,rgb(241, 207, 93),rgb(121, 223, 121),rgb(230, 143, 215));
    
}

.contact-info a {
    padding-top: 40px;
    
    color: whitesmoke;
    text-decoration-color:rgb(120, 4, 253);

}

.title{
    font-family: georgia;
    font-style: italic;
    color:rgb(120, 4, 253);
    font-variant: small-caps;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-info ul{
    position: relative;
}

.contact-info ul li{
    list-style-type: none;
    position: relative;
    margin:10px 0;
    cursor:pointer;

    color: whitesmoke;
    text-decoration: none;
}

.contact-info ul li .icon{
    display: inline-block;
    width: 20px;
    font-size: 18px;
    color:rgb(120, 4, 253);
}
.container .right-side{
    position: relative;
    background-color: rgb(213, 175, 238);
    padding: 40px;
}

.contact-info.education li{
    margin-bottom: 20px;
}

.contact-info h5{
    color: rgb(131, 65, 236);
}

.contact-info h4{
    font-weight: 500;
}


.contact-info.language .precent{
    position: relative;
    width: 100%;
    height: 4px;
    background:rgb(144, 73, 224);
    display: block;
    margin-top: 5px;
}

.contact-info.language .precent div{
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    background: whitesmoke;
    
}

.container .left-side{
    position: relative;
    background-color: rgb(202, 140, 243);
    padding: 40px;
}

.about{
    margin-bottom: 50px;
}



.title2{
    color:rgb(141, 59, 235);
    font-variant: small-caps;
    font-style: italic;
}


.about .box{
    display: flex;
    flex-direction: row;
    margin:20px 0;
}

.about .box .company-year{
    min-width: 150px;
}

.about .box .company-year h5{
    font-variant: small-caps;
    font-style: italic;
    color:rgb(174, 96, 247);
    font-weight: 600;
}

.text-skill{
    font-variant: small-caps;
    font-style: italic;
}
.about .box .text h4{
    color:rgb(163, 74, 247);
    font-size: 16px;
    
}

.Hobbies li{
    font-size: 12px;
    display: inline;
}

@media (max-width:1000px){
    .container{
        margin: 10px;
        grid-template-columns: repeat(1,1fr);
    }
}


@media (max-width:1000px){
    .about .box{
        flex-direction: column;
    }
    .about .box .company-year{
        margin-bottom: 5px;
    }

    .Hobbies li{
        display:block;
        line-height: 20px;
    }

  
}