body {
    display: flex;
    margin: 0;
    height: 100vh;
    width:inherit;
    font-family: 'Questrial', sans-serif;
    overflow: hidden;
}

.paprika {
    background-image: url(materiale/bg_shop.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 50%;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all .2s ease-in-out;
    color: #F81A74;
    cursor: pointer;
    text-decoration: none;
    padding: 20px;
}

.paprika_trav {
    background-image: url(materiale/bg_blog.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 50%;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all .2s ease-in-out;
    color: #944A96;
    cursor: pointer;
    text-decoration: none;
    padding: 20px;
}

.paprika:hover, .paprika_trav:hover {
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
    z-index: 100;
    color: #fff;
}

h1 {
    margin-bottom: 0px;
}

h2 {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    font-weight: 300;
}

@media (max-width: 800px) {
    body {
        display: flex;
        flex-direction: column;

    }

    .paprika {
        width: 100%;
        height: 50vh;
        background-position: 68%;
        background-size: cover;
    }
    .paprika_trav {
        width: 100%;
        height: 50vh;
        background-position: 34%;
        background-size: cover;
    }

    #br {
        max-width: 220px;
    }
}