﻿

.wrapper {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-primary);
}

h1 {
    font-size: var(--font-size-xl);
    color: var(--color-shades);
}

.card {
    background: rgba(245, 245, 245, 1.0);
    color: rgba(68, 68, 68, 01);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    max-width: 300px;
    min-height: 300px;
    position: relative;
    top: 0;
    transition: all .1s ease-in;
}

    .card:hover {
        top: -2px;
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
    }

    .card .cardImg {
        width: 300px;
        background-size: cover;
        background-position: center center;
    }

    .card .cardBody {
        padding: 20px;
        text-align: center;
    }
