.main {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px;
    background-color: #f0f0f0;
    padding: 8px;
    text-align: center;
    margin-bottom: 0px;
    
    font-family: Arial, Helvetica, sans-serif;
}

.card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px;

    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: rgb(121, 217, 255);
    padding-left: 16px;
    padding-right: 16px;
}

.cardFile {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 2px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    margin-top: 8px;
}
.fileSpecsCard {
    border-radius: 5px;
    background-color: rgb(180, 205, 214);
    border: 1px solid #999;
    margin-top: 8px;
    padding: 8px;
}
.fileExampleCard {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px;
    margin: 0;
    padding-top: 2px;
    padding-left: 8px;
    padding-bottom: 8px;
    width: 400px;
    display: block;
    background-color: #eee;
    border: 1px solid #999;
}

.imgFlexContainer {
    display: flex;
}

.imageContainer {
    display: flex;
    padding: 16px;
    transition: transform .2s; /* Animation */
    height: auto;
    border-radius: 5px;
    margin: 5px;

}
.imageContainer:first-child {
    margin-right: 20px;
} 
.imageContainer:hover {
    transform: scale(2.0) translate(25%, -100px);
}
.zoom {
    padding: 50px;
    background-color: green;
    transition: transform .2s; /* Animation */
    width: 200px;
    height: 200px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}
.zoom:hover {
    transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/* On mouse-over, add a deeper shadow */
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.container {
    padding: 2px 16px;
    text-align: left;
    padding: 5px;
}

pre.code {
    white-space: pre-line;
    margin-left: 10px;
}
pre.code::before {
    counter-reset: listing;
}
pre.code code {
    counter-increment: listing;
    text-align: left;
    float: left;
    clear: left;
}
pre.code code::before {
    content: counter(listing) ". ";
    display: inline-block;
    
    height: 16px;
    padding-left: auto;
    margin-left: auto;
    text-align: right;
}