@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;

}

body{
    background: linear-gradient(to right, #27b3eb, #80a3ee, #27b3eb);
}

.center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.main{
    height: 100vh;
    width: 100%;
}
.box{
    width: 300px;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.288);
    border-radius: 23px;
    flex-direction: column;
    color: white;
    position: relative;
    overflow: hidden;
}
.box img{
    width: 100px;
    height: 100px;
    border-radius: 50px;
}
.user_name{
    margin-bottom: 5px;
    font-size: 2rem;

}
.skill{
    color: rgba(255,255,255,0.555);

}
.arr_container, .cancel{
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    bottom: 0;
    right: 0;
    border-radius: 23px 0 23px 0;
    color: rgb(70,70,70);
    font-size: 1.6rem;
    cursor: pointer;
    transition: rotate(45deg);

}
.active_arr{
    transform:translate(80%, 80%)

}
.arr_container i{
    transform: rotate(45deg);
}

.left_container{
    position: absolute;
    background: #0f2027;
    width: 100%;
    height: 100%;
    border-radius: 23px;
    padding: 48px 0 0 20px;
    transition: all .4s;
}

.off{
    transform: translate(-80%, -80%) rotate(90deg);
}

.active{
    transform: translate(0) rotate(0);
}

.left_container p{
    margin-bottom: 15px;
    font-size: 1.2em;
}

.left_container .skills div{
    display: inline-block;
    color: rgb(155, 155, 155);
    border: 1px solid rgb(155, 155, 155);
    padding:5px 10px ;
    font-size: .9rem;
    margin: 4px 4px 4px 0;
}
.left_container .icons{
    font-size: 1.6rem;
    margin-top: 10px;
    
}
.left_container .icons i{
    color: #cfcfcf;
    cursor: pointer;
    margin-right: 10px;
    transition: all .4s;

}
.left_container .icons i:hover{
    color: #2c5364;
}





.ball {
  position: fixed;
  border-radius: 100%;
  opacity: 0.7;
}



