* {
    font-family: 'Roboto', sans-serif;
}

@media (min-width: 992px) {
    .main-page-wrapper {
        width: 600px;
        /*background: #ccc;*/
        margin: auto;
    }
}

.profile {
    position: relative;
}

.profile .profile-pic {
    border-radius: 20px;
}

.profile .online {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 80px;
    border-radius: 100px;
    height: 20px;
    background: #00000066;
    padding-left: 30px;
    line-height: 22px;
    font-size: 12px;
    color: #fff;
}

.profile .online::before {
    content: "";
    position: absolute;
    width: 10px;
    border-radius: 100%;
    left: 10px;
    top: 5px;
    height: 10px;
    background: chartreuse;
}

.profile .content {
    position: absolute;
    height: 60px;
    width: 100%;
    background: #00000044;
    left: 0;
    bottom: 0;
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.profile .content .name {
    color: #fff;
    font-weight: 600;
    margin: 0;
    margin-top: 5px;
}

.whats-app-link {
    display: inline-block;
}

.whats-app-link-fixed {
    /*position: fixed;*/
    /*bottom: 35px;*/
    margin-left: 5%;
    width: 90%;
    display: inline-block;
    animation: my_pulse 0.5s infinite alternate;
}

@media (min-width: 992px) {
    .whats-app-link-fixed {
        margin-left: calc(50% - 150px);
        width: 300px;
    }
}
@keyframes my_pulse {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.1);
    }
}
footer {
    background: #010088;
    color: #fff;
}