@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
}
body{
    background: linear-gradient(to right,#2c5364,#203a43,#0f2027);
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.main{
    height: 100vh;
}
.box{
    width: 250px;
    height: 250px;
    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: 1.5rem;
    margin-top: 20px;
}
.skill{
    color: rgba(255, 255, 255, 0.555);
}
.education{
    color: rgb(255, 255, 255, 0.555);
    margin-top: 5px;
    font-size: 0.75rem;
}
/* arrow */
.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: all .4s;
}
.arr_container{
    transform: rotate();
}
.active_arr{
    transform: translate(80%,80%) rotate(45deg);
}
.left_container{
    position: absolute;
    background: #0f2027;
    width: 100%;
    height: 100%;
    border-radius: 23px;
    padding: 40px 0 0 20px;
    transition: all .4s;
}
.off{
    transform: translate(-80%,-80%) rotate(90deg);
}
.active{
    transform: translate(0) rotate(0);
}
.left_container{
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.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: 15px 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;
}
