body {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pulsebg ease 5s infinite;
    text-shadow: 2px 2px #ccc;
    font-family: url('RobotoCondensed-VariableFont_wght.ttf');
}

header {
    animation: float ease 6s infinite;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

@keyframes pulsebg {
    0% {
        background-color: #eee;
    }

    50% {
        background-color: #fff;
    }

    100% {
        background-color: #eee;
    }
}

.product {
    padding: 20px;
    box-shadow: 4px 4px 4px #ccc;
    border-radius: 15px;
    border: 2px solid #d2d2d2;
    margin-bottom: 10px;
    width: 60vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
}

    .product img {
        border: 2px solid #d2d2d2;
        border-radius: 20px;
    }

hr {
    border: solid 2px #d2d2d2;
    width: 80%;
}


.roboto-condensed-<uniquifier> {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}