@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital@1&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;


  font-family: "Crimson Pro", serif;
  

.Protfolio-container{
    min-height: 100vh;
    width: 100%;
    display: flex;
}
.navlist{
display: flex;    
gap: 4rem;

height: 10vh;
width: 100%;
justify-content: center;
align-items: center;
position: fixed;

}
.navlist li{
    list-style: none;

}
.navlist li a{
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #111;
    position: relative;
    
   
}
.left-container, .right-container{
    height: 100vh;
    display: flex;
    align-items:center ;
}
.left-container{
    
    background: #866060;
    width: 75%;
    padding-left: 3rem;

}
.right-container{

    background: linear-gradient(-45deg, #969eb2,#866060 60%);
    width: 25%;

}
.icons .fa-brands{
    font-size: 2rem; 
}
.icons{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
   
}
.content{
  margin-left: 4rem;  
}
.content h2{
    font-size: 1.5rem;
    color: #d9cccc;

}
.content h1{
    font-size: 4rem;
    color: #07163a;
}

.content .detail{
    font-size: 1.1rem;
    color: #fff;
    max-width: 38rem;
    margin: 1.1rem 0 3rem 0;
    line-height: 1.8rem;

    
}

.btn-container button{
    border: .1rem solid #110f2c;
    font-size: 1.1rem;
    padding: .8rem 1.3rem;
    border-radius: .5rem;
    cursor: pointer;
    transition: .5 ease;

}
button:nth-child(1){
    background: #cdc0c0;
    color: #010a21;
}

button:nth-child(2){
    background: #cdc0c0;
    color: #000001;
    margin-left: 2rem;
}
button:nth-child(1):hover{
    background: transparent;
    color: #fff;

}
button:nth-child(2):hover{
    background: transparent;
    color: #fff;
}
.icons .fa-brands:hover{
    cursor: pointer;
    background: linear-gradient(#d3ceda, #bd9eb1, #969eb2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.design .circle{
    aspect-ratio: 1;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);

}
.circle:nth-child(1){
    background: linear-gradient(90deg, transparent 0%, #866060);
    width: 26rem;
}
.circle:nth-child(2){
    background-image: url("image/me.jpg");
    width: 22rem;
    background-size: 100%;
    background-repeat: no-repeat;
    border: .1rem solid rgb(192, 183, 183);
    box-shadow: 
    0 0 1rem #9e8787,
    inset 0 0 1rem #a08e8e,
    0 0 2rem #ffffff,
    inset 0 0 2rem #b08787,
    0 0 4rem #d58181,
    inset 0 0 3rem #c2cee9;
}
.navlist li a::after, .navlist .active::after{
    content: "";
    position: absolute;
    background: #fff;
    width: 100%;
    height: .1rem;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform .5s;
}
.navlist li a:hover::after, .navlist .active::after{
    transform: scaleX(1);
    transform-origin: bottom left;
}
}