/* body{
    height: 50vw;
    overflow: hidden;
    background: linear-gradient(135deg, #1abc9c 0%, #8e44ad 100%) no-repeat center center fixed;
}

.body-container{
    display: flex;
    justify-content: center;
    align-items: center;
} */

@keyframes float{
    0%{
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translateY(0px);
    }
    50%{
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        transform: translateY(-20px);
    }
    100%{
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translateY(0px);
    }
}

.avatar{
    width: 150px;
    height: 150px;
    box-sizing: border-box;
    border: 5px white solid;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translateY(0px);
    animation: float 6s ease-in-out infinite;
    margin-left: auto;
    margin-right: auto;
}

.avatar img{
    width: 100%;
    height: auto;
}

/* Aikay Practical */
.avatar-name{
    border: 5px white solid;
    text-align: center;    
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
}

.avatar-read-more{
    color: #fff;
    text-decoration: none;
}

.avatar-read-more:hover{
    color: #8BC633;
    text-decoration: underline;
}

/* Aikay Practical */
.aikay-container{
    text-align: center;
    color: #fff;
    margin-bottom: 45px;
    /* border-bottom: 3px solid red; */
}

