* {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    color: #393939;
    background-image: url("../images/back.png");
    background-position: right -300px bottom;
    background-repeat: no-repeat;
    text-align: center;
}

.card {
    position: relative;
    display: inline-block;
    border-radius: 10px;
    width: 350px;
    height: 630px;
    padding: 20px;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
}

.svg-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    z-index: -1;
}

.blob {
    transform: translate(23%, 3%) scale(1);
    fill: #00bfd87e;
    transition: 0.4s;
}

.card.active .blob {
    fill: #00bfd8a6;
    transform: translate(23%, 3%) scale(3.75);
}

.card.active .bg-overlay {
    opacity: 0;
}

.circular-border {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: #00bfd8;
    position: relative;
}

i {
    font-style: normal;
    font-size: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    opacity: 0;
    transition: 0.4s;
    text-align: justify;
    font: 400 1.100rem/1.375rem "Raleway", sans-serif;
}

.card.active p {
    opacity: 1;
}