body
{
    background-color: #ffffff;
}

.page
{
    width: 30%;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    background-color: #ffffff;

    box-shadow: 0 0 2px 2px #ebebeb;

    padding: 20px;
    border-radius: 8px;

    display: flex;
    justify-content: center;
}




.container
{
    width: 300px;
    height: 300px;

    position: relative;

    overflow: hidden;
    border: 1px solid #000000;
}

.container img
{
    width: auto;
    height: 100%;

    display: block;

    top: 50%;
    left: 50%;
    position: absolute;

    transform: translate(-50%, -50%);
}