﻿@import url('https://fonts.googleapis.com/css2?family=Poppins&amp;display=swap');

section {
    width: 90%;
    margin: auto;
}

.valentine-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

    .valentine-flex div a span {
        border: #f79d9d 1px solid;
        background: #f8f1f1;
        display: block;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin: auto;
        text-align: center;
        padding: 20px;
        margin-bottom: 12px;
    }

    .valentine-flex div a {
        text-align:center;
        font-size: 20px;
        font-family: 'Poppins', sans-serif;
        text-decoration: none;
        color: black;
        display: block;
        font-weight: bold;
    }

    .valentine-flex div {
        display: block;
    }

        .valentine-flex div a img {
            width: 100%;
            display: block;
        }


@media (max-width:600px) {
    .valentine-flex {
        overflow-x: scroll;
        gap: 30px;
    }

        .valentine-flex div a {
            white-space: nowrap;
            font-size: 16px;
        }
}
