
body {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

p {
    font-size: 16px;
    margin: 20px;
}

.p1 {
    font-size: 14px;
}

.p2 {
    color: rgba(19, 10, 67, 0.515);
    font-size: 12px;
    font-weight: bold;
}

img {
    border-radius: 25px;
}

/* Below are the card styles.*/

.flip-card {
    background-color: transparent;
    border-radius: 25px;
    width: 350px;
    height: 350px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    border-radius: 25px;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 1.5s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 4px rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
    border-radius: 25px;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Below is the gif used for the front of the card. */

.flip-card-front {
    background-image: url(/mult120/assets/will2.gif);
    margin: auto;
    width:350px;
    height:350px;
    background-color: #bbb;
    color: black;
    border-radius: 25px;
}

.flip-card-back {
    background-color: #76c7c4;
    border-radius: 25px;
    color: white;
    transform: rotateY(180deg);
}