body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background-color: black;
    margin: 0px;
}

.navbar {
    height: 4em;
    background-color: #181a1b;
    display: flex;
    gap: 10px;
}

.navbar a {
    font-size: 2em;
    color: white;
    text-decoration: none;
    background-color: #2f3132;
    font-weight: bolder;
    box-sizing: border-box;

    height: 100%;
    text-align: center;

    display: flex;
    align-items: center;

    padding-left: 20px;
    padding-right: 20px;
}

.navbar a:hover {
    background-color: #464849;
}

.navbar a.active {
    background-color: #464849;
}

.home {
    color: white;
    width: 100vw;
    height: calc(100vh - 4em);

    display: flex;
    align-items: center;
    justify-content: center;
}

.home h1 {
    font-size: 5em;
}

#flex-container {
    padding: 10px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-image {
    background-color: #181a1b;

    padding: 20px;
    margin: 10px;

    height: 50vh;
    width: 50vh;
}

.gallery-image img {
    height: 100%;
    width: 100%;

    object-fit: contain;
    object-position: center;
}

.hidden {
    display: none;
}

.gallery-carousel {
    background-color: #181a1b;

    padding-top: 20px;
    padding-bottom: 20px;
    margin: 10px;

    height: 50vh;
    width: calc(50vh + 40px);

    display: flex;
    align-items: center;
    justify-content: space-around;
}

.gallery-carousel .images {
    height: 100%;
    width: 100%;
}

.gallery-carousel .images img {
    height: 100%;
    width: 100%;

    object-fit: contain;
    object-position: center;
}

.gallery-carousel button {
    cursor: pointer;
    background-color: transparent;
    border: none;

    flex-shrink: 0;

    width: 40px;
    height: 40px;
}

.gallery-carousel button:disabled {
    opacity: 25%;
}

.gallery-carousel button img {
    width: 100%;
    height: 100%;

    scale: 150%;
}

img {
    cursor: pointer;
}

img:hover {
    opacity: 75%;
}