body {
    background-color: rgb(6, 6, 35);
    margin: 0px;
}

a {
    text-decoration: none;
}

/* Header */

.Header {
    width: 100%;
    height: 10vh;
    background-color: rgb(0, 0, 20);
    container-type: size;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#Header_logo {
    width: 50%;
    height: auto;
    margin-left: 5%;
    justify-content: left;
}

#Header_Gallery {
    font-size: 5vh;
    margin-right: 3%;
    color: white;
}

/* Gallery Page */

.Gallery_Page{
    width: 100%;
    min-height: 90vh;
    color: white;
    padding-top: 3vh;
}

.Gallery_Title{
    text-align: center;
    font-size: 3vw;
    margin-bottom: 3vh;
}

/* Gallery Grid */

.Gallery_Grid{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25vw;
}

.Gallery_Grid img{
    aspect-ratio: 4 / 3;
    object-fit: cover;  
    width: 100%;
    border-radius: 10px;
    transition: transform 0.2s;
}

.Gallery_Grid img:hover{
    transform: scale(1.1);
}

.clickable-image input:checked + img {
    position: fixed;
    inset: 0;
    margin: auto;
    width: 85vw;
    max-height: 85vh;
    transform: none;
    object-fit: contain;
    z-index: 1000;
    transition: none;
}

.clickable-image input {
    display: none;
}