.container {
    display: flex;
    flex-flow: column;
    justify-content: space-around;
}

.normal {
    min-height: 400px;
    height: 100%;
}

.img-responsive{
    width: 100vw;
    height: 100vh;
    margin: 0;
    transition: all .5s ease-in-out;
    border: 2px solid rgb(255, 194, 81);
}

.card {
    background-color: #fff;
    color: #000;
    font-family: sans-serif;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    
}

@media screen and (min-width: 550px){
    .container {
        width: calc(100vw - 20vw);
        margin: 0 10vw ;
    }


    .img-responsive{
        width:  calc(100vw - 20vw);
        height: 100%;
        transition: all .5s ease-in-out;
    }
}