body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background: radial-gradient(
        #666,
        #222
    );
}
.container{
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.fb-container{
    min-width: 670px;
    text-align: left;
    margin-bottom: 10px;
}
.fb-like{
    width: 600px !important;
}
main{
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}
.outer-module{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding-right: 12px;
}
.module{
    width: 500px;
    height: 334px;
    border: 1px solid white;
    overflow: hidden;
}
/*Comment out all these lines till comment for img tag to display img tag
Uncomment for background image*/
/*.picture{
    width: 100%;
    height: 100%;
    background-image: url('./images/bernKornhausbruecke_1000x667.jpg');
    background-position: left top;
    background-size: cover;
    background-repeat: no-repeat;
}
.picture:hover,
.picture:focus{
    transform: scale(2);
    cursor: zoom-in;
    transition: transform 25ms;
}
.zoom{
    transform: scale(1);
    cursor: zoom-out;
    transition: transform 500ms;
}*/
/*Comment out all these lines till Comment for background image.
Uncomment for img tag*/
.outer-image{
    border: 1px solid white;
}
.image{
    width: 100%;
}
.zoom:hover{
    transform: scale(1.8);
    cursor: zoom-in;
    transition: transform 25ms;
}
.zoom{
    transform: scale(1);
    cursor: zoom-out;
    transition: transform 500ms;
}
/*Comment****************/
footer{
    position: absolute;
    bottom: 0;
    padding: 6px 0;
    text-align: center;
    width: 100%;
    height: 1rem;
    font-size: small;
    color: rgb(206, 199, 199);
    background-color: rgb(37, 37, 37);
}