.container-cards {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    margin-top: 100px;
}

.flip-card {
    background-color: transparent;
    width: 280px;
    height: 150px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    font-family: "Barlow", ital;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    border-radius: 5px;
    padding: 5px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 13px 14px 15px -1px rgba(110, 110, 110, 0.42);
    box-shadow: 13px 14px 15px -1px rgba(110, 110, 110, 0.42);
    border-left: 5px solid rgb(255, 204, 51);
}

/* Style the back side */
.flip-card-back {
    font-family: "Barlow", ital;
    border-radius: 5px;
    padding: 5px;
    background-color: rgb(255, 255, 255);
    transform: rotateY(180deg);
    -webkit-box-shadow: 13px 14px 15px -1px rgba(110, 110, 110, 0.42);
    box-shadow: 13px 14px 15px -1px rgba(110, 110, 110, 0.42);
    border-left: 5px solid rgb(255, 204, 51);
}

.card-title {
    font-family: "Barlow", ital;
    font-size: 20px;
    font-weight: bold;
    color: #424242;
    font-weight: bold;
    margin-top: 10px;
    padding: 5px;
}
.card-content {
    font-size: 30px;
    padding-top: 15px;
    color: #ffcc33;
    font-weight: bold;
}

.content-back {
    font-size: 20px;
    color: #424242;
    font-weight: bold;
}
