* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(to bottom right, #0B133A, #0F1A4D);
}

.card {
    margin: 100px auto 0;
    width: 400px;
    height: 600px;
    perspective: 800px;
}

.card__inner {
    width: 100%;
    height: 100%;
    transition: transform 1s;
    transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
}

.card__inner:hover {
    transform: scale(1.1);
}

.card__inner.is-flipped {
    transform: rotateY(180deg);
    cursor: default;
}

.card__face {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0px 3px 18px 3px rgba(124, 141, 218, 0.6);
}

.card__face--front {
    background-image: linear-gradient(to bottom right, #2641c2, #01BFFD);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__face--front h2 {
    color: #fff;
    font-size: 6rem;
    font-family: 'Lobster', cursive;
}

.card__face--back {
    background-color: #f3f3f3;
    transform: rotateY(180deg);
}

.card__content {
    width: 100%;
    height: 100%;
}

.card__header {
    position: relative;
    padding: 30px 30px 40px;
}

.card__header:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 0 0 15px 15px;
    background-image: linear-gradient(to bottom left, #2641c2 10%, #01BFFD 115%);
}

.pp {
    display: block;
    width: 128px;
    height: 128px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 5px solid #fff;
    object-fit: cover;
}

.card__header h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
}

.card__header h3 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    font-family: 'Lobster', cursive;
}

.main__btn {
    display: block;
    font-size: 1rem;
    background: #833ab4;
    background: -webkit-linear-gradient(to right, #fcb045, #fd1d1d, #833ab4);
    background: linear-gradient(to right, #fcb045, #fd1d1d, #833ab4);
    padding: 20px 60px;
    border: none;
    border-radius: 4px;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    outline: none;
    
}

.main__btn a:link {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

/* .main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ff1ead;
    transition: all 0.35s;
    border-radius: 4px;
} */

.main__btn:hover {
    color: #fff;
    transform: scale(1.2);
}

.main__btn:hover:after {
    width: 100%;
}

.card__body {
    padding: 30px;
}

.card__body h4 {
    color: #0F1A4D;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.card__body p {
    color: #0F1A4D;
    font-size: 1rem;
    line-height: 1.5;
    padding-top: 1rem;
}

a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 2rem;
    font-family: 'Lobster', cursive;
}

a.social {
    display: inline-block;
    text-indent: -9999px;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
    opacity: .5;
    transition: all .25s;
}

a.linkedin {
    background-image: url(images/linkedin.svg);
}
a.github {
    background-image: url(images/github.svg);
}
a.social:hover {
    opacity: 1;
}

footer {
    padding-top: 2rem;
    text-align: center;
    color: #fff;
    width: 100%;
    min-height: 30px;
    padding: 20px 0 40px 20px;
}

footer .copyright {
    top: -8px;
    margin-right: 20px;
    font-size: .75em;
}
footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    display: inline-block;
}