body, html
{
    height: 100%;
    margin: 0;
}

body
{
    color: white;
    background-color: #0A1630;
    background-image: linear-gradient(
        hsl(221, 66%, 5%),
        hsl(221, 66%, 11%)
    );
    font-family: "Roboto Slab", serif;
	overflow: hidden; /* Hide scrollbars */
    user-select: none;
}

.center
{
    position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
    perspective: 100vh;
}

#list
{
    display: flex;
    filter: drop-shadow(0 0 10vh #0A1630);
}

@media screen and (orientation: landscape)
{
    #list { flex-direction: row; }
    #baby2021 { transform: rotateY(20deg); }
    #baby2024 { transform: rotateY(-20deg); }
}
@media screen and (orientation: portrait)
{
    #list { flex-direction: column; }
}

.entry
{
    width: 30vh;
    height: 43vh;
    margin: 1vh;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.entry:hover
{
    transform: rotateY(0) scale(1.08) !important;
    z-index: 1;
}

.entry a
{
    color: white;
    text-decoration: none;
}

.entry img
{
    width: 30vh;
    height: 43vh;
    box-shadow: 0 0 8vh 1vh rgba(99, 116, 168, 0.4);
}

.entry p
{
    position: relative;
	left: 50%;
	top: -35%;
	transform: translate(-50%, -50%);
    font-size: 3vh;
    color: rgb(207, 119, 255);
    background-color: rgb(108, 66, 131);
    padding: 1vh;
    box-shadow: 0 0 8vh 1vh rgba(99, 116, 168, 0.4);
}

#baby2021
{
    background-image: linear-gradient(#0A1630 33%, rgb(43, 55, 94));
}

#baby2024
{
    background-image: linear-gradient(#0A1630 33%, #6c4283);
}