﻿body {
    background-color: #FFFFFF;
}

.container {
    position: relative;
    top: 25%;
}

.miniatures {
    cursor: pointer;
    text-align: center;
}

.miniatures > img {
    width: 75px;
    height: 75px;
    object-fit: cover;
	
	border-radius: 20%;

    margin: 2px;
}

.miniatures > img:hover {
    transform: scale(1.05);
}

.baseImage {
    width: 100%;
    height:100%;

    object-fit: cover;
    display: block;

    margin: 20px auto;
}

.fade {
    animation: fade 1.5s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}