* {
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  padding: env(safe-area-inset);
}


body {
    font-family: "Raleway";
    background-color: #000000;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("images/bg2.jpeg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
}

a {
  text-decoration: none
}

.contain {
  height: 100%;
}

.card {
    width: 400px;
    margin: 15vh auto 0;
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.14);
    color: #444;
    text-align: center;
    font-size: 16px;
    animation: fadein 8s;
    border-radius: 4px;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


.card .card-header {
    position: relative;
    height: 48px;
}

.card .card-header .profile-img {
    width: 96px;
    height: 96px;
    border-radius: 1000px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.card .card-body {
    padding: 10px 40px;
}

.card .card-body .full-name {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 10px 0 0;
}

.card .card-body .username {
    font-size: 13px;
    color: #777;
    margin: 5px 0 0;
}

.card .card-body .city {
    font-weight: 200;
    margin: 10px 0 0;
    opacity: .7;
}

.card .card-body .desc {
    line-height: 24px;
}

.card .social-icon {
    font-size: 22px;
    margin: 0 12px;
}


.card .social-icon.facebook {
    color: #3b5999;
}

.card .social-icon.linkedin {
    color: #0077b5;
}

.card .social-icon.github {
    color: #24292E;
}

.card .social-icon.mail {
    color: #f00000d4;
}

.social-icon:hover {
  opacity: .5;
  transition: 0.35s;
}

.card .card-footer {
    display: table;
    width: 100%;
    border-top: 1px solid #e6e6e6;
}

.card .card-footer .col {
    display: table-cell;
    padding: 5px 10px;
    font-size: 15px;
}

.card .card-footer .count {
    font-size: 18px;
    font-weight: 600;
}

.vr {
    border-right: 1px solid #e6e6e6;
}

@media screen and (max-width: 575px) {
    .card {
        width: 96%;
    }

    .card .card-body {
        padding: 10px 20px;
    }

    .card .card-footer .col {
        padding: 0 10px;
    }

    .card .card-footer .count {
        display: block;
        margin-bottom: 5px;
    }
}


