body{
    font-family:sans-serif;
    font-size:16px;
    line-height: 1.6em;
    background: rgba(39, 42, 51, 1);
    color:white;
    width:100vw;
    min-height: 100vh;
    overflow-x: hidden;
}
*{
    box-sizing: border-box;
}
h1{
    font-family:sans-serif;
    font-size:9em;
    line-height: 1.1em;
    text-transform: uppercase;
    margin:0;
}
h2{
    font-family:sans-serif;
    font-size:3em;
    line-height: 1.1em;
    margin:0;
}
.grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:20px;
    padding:0px 10px; 
}
.entry{
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border:solid 2px rgba(20, 12, 51, 1);
    border-radius:16px;
}
.entry img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.aspect-16-9 {
    grid-column: span 1; /* Each horizontal image takes 1 column */
}

.aspect-9-16 {
    grid-column: span 0.5; /* Each vertical image takes 0.5 columns */
}
.top{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 5px;
    background-color: rgba(93, 186, 168, 1);
    border-radius:16px 16px 0px 0px;
}
.bot{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 5px;
    background-color: rgba(93, 186, 168, 1);
    border-radius: 0 0 16px 16px;
}

.entry span {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.entry button {
    font-size: 12px;
    background-color: white;
    border: solid 2px rgba(20, 12, 51, 1);
    border-radius:32px;
    height:32px;
    width:32px;
    padding:0;
    box-sizing: content-box;
    transition: 0.5s box-shadow linear;
}
.entry button:hover{
    background-color: rgb(230, 230, 230);
    border-color: rgb(57,99,110);
    box-shadow: inset 0 0 0 16px rgb(57,99,110);
}
.entry button:active{
    transform-origin: 50% 50%;
    transform: scale(0.9);
}
.entry a{
    color:white;
}
.entry a:visited{
    color:rgba(20, 12, 51, 1);
}
.entry a:active{
    color:rgba(93, 186, 168, 1);
}