@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
html, body
{
    min-height: 100vh;
    min-width: 100vw;
    margin: 0;
}

.PhotoList-Background
{
    background-color: rgb(111, 143, 173);
    background-image: url("Images/photosBackground.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.CornerLogo
{
    position: absolute;
    height: 200px;
    width: 200px;
    bottom: -25px;
    left: 0px;
    filter: brightness(0) saturate(100%) invert(91%) sepia(58%) saturate(4121%) hue-rotate(172deg) brightness(106%) contrast(97%);
}

.ContactWrapper
{
    position: absolute;
    top: 50px;
    display: inline-flex; /*Inline-flex online as wide and tall as the children*/
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.ContactLine
{
    height: 2px;
    width: 30px;
    background-color: #bee4fb;
}

.ContactText
{
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    color:#bee4fb;
}

.MenuWrapper
{
    position: absolute;
    top: 50px;
    right: 0px;
    display: inline-flex; /*Inline-flex online as wide and tall as the children*/
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    gap: 10px;
}

.MenuLineWrapper
{
    position: relative;
    display: inline-flex; /*Inline-flex online as wide and tall as the children*/
    flex-direction: column; /* Stacks children vertically */
    justify-content: flex-start; /* Keeps them at the top */
    gap: 2px;
}
.MenuLine
{
    height: 2px;
    width: 30px;
    background-color: #bee4fb;
}

.MenuText
{
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    color:#bee4fb; 
}

.Gallery {
    position: absolute;
    display: grid;

    grid-template-rows: repeat(3, 1fr);
    grid-auto-flow: column;

    gap: 5px;

    width: 75vw;
    height: 75vh;

    overflow: hidden;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.GalleryImage {
    height: 25vh;
    width: 32vh;
    object-fit: cover;
}

.ScrollControl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 100px;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.2s ease;
    opacity: 0.3;
}

.ScrollControl:hover {
    opacity: 0.7;
}

.ScrollControl::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: solid #bee4fb;
    border-width: 3px 3px 0 0;
    width: 15px;
    height: 15px;
}

.ScrollLeft {
    left: 10px;
}

.ScrollLeft::after {
    right: 15px;
    transform: translateY(-50%) rotate(-135deg);
}

.ScrollRight {
    right: 10px;
}

.ScrollRight::after {
    left: 15px;
    transform: translateY(-50%) rotate(45deg);
}
