@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');

nav {
    font-family: 'Abril Fatface', cursive;
}

.container-fluid {
    background-color: #F0E2E7;
    margin-top: -6.8px;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    padding: 0px;
    text-align: center;
}

.full-container {
    display: flex;
    justify-content: space-around;
    padding: 3%;
    font-family: 'Abril Fatface', cursive;
}

.container {
    height: 250px;
    width: 250px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 1px 11px 0px rgba(0,0,0,0.3);
    background: #b20d30;
    /*d1103a - e4113f - eee1b49 - 2fde58 -*/
}

.container:hover {
    height: 400px;
    width: 350px;
    border-radius: 5px;
    box-shadow: 0px 1px 55px 0px rgba(0,0,0,0.3);
}

.container .wrapper img {
    position: relative;
    z-index: 20;
    border-radius: 50%;
    display: block;
    height: 200px;
    width: 200px;
    border: 5px solid #fff;
    object-fit: cover;
    margin: 23px auto;
    transition: all 0.3s ease;
}

.container:hover .wrapper img.active {
    height: 470px;
    width: 350px;
    margin: 0px auto;
    border: none;
    border-radius: 5px;
}

.wrapper .title {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    padding: 10px;
    line-height: 25px;
}

.wrapper .place {
    color: #fff;
    font-size: 18px;
    line-height: 15px;
    margin: 10px 0;
}

.content {
    color: #fff;
    font-size: 19px;
    margin-top: 10px;
    padding: 1px 20px 10px 20px!important;
}

.container .icons {
    position: relative;
    margin-top: -360px;
    margin-left: 0px;
    list-style: none;
}

.container .icons li {
    height: 40px;
    width: 40px;
    margin: 5px 0;
    opacity: 0;
    margin-left: -90px;
    transition: all 0.5s ease;
}

.linkedin {
    height: 21px;
    width: 21px;
    margin: 5px 0;
    color: #b20d30;
}

.git {
    height: 21px;
    width: 21px;
    margin: 9.5px 0;
    color: #b20d30;
}

.twitter {
    height: 24px;
    width: 24px;
    margin: 8.5px 0;
    color: #b20d30;
}

.container:hover .icons li {
    opacity: 1;
    margin-left: 7px;
}

.container:hover .icons li:nth-child(2) {
    transition-delay: 0.2s;
}

.container:hover .icons li:nth-child(3) {
    transition-delay: 0.4s;
}

.container .icons li a {
    color: #b20d30;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: #fff;
    display: block;
    line-height: 40px;
    transition: all 0.3s;
}

.container .icons li a:hover {
    transform: scale(0.9s);
}