@font-face
{
    font-family: 'customFont';
    src: url('./src/font/Poetsen_One/PoetsenOne-Regular.ttf');
}

*
{
    font-family: customFont;
}

html
{
    background-color: #24d453;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2304833c' fill-opacity='0.51'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

h2
{
    font-size: 32px;
}

.container
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.container a
{
    width: 75%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 15px;
}

.card
{
    width: 100%;
    height: 200px;
    min-width: 100%;
    border: solid black 3px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 8px 8px;
    transition: 0.5s;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0 30px;
}

.card:hover
{
    background-color: #a7dbb5;
    cursor: pointer;
    transform: scale(1.02);
}

.cardImage
{
    height: 200px;
    width: 200px;
}

a
{
    text-decoration: none;
    color: black;
}

@media (min-width: 1200px)
{
    .container
    {
        flex-direction: row;
    }

    .container a
    {
        width: 35%;
    }

    .card
    {
        min-width: unset;
    }
}
