
body {
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Roboto Flex";
    font-size: 7px;
    color: rgb(0, 0, 0);

}

.box {
    background-color: rgb(255, 255, 255);
    /*box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, 0.137);*/

    width: 100vw;
    overflow: hidden;
}

.top {
    width: fit-content;
    position: fixed;
    bottom: 15%;
    right: 35px;
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
}
.logo {
    height: 50px;
    width: auto;
    overflow: hidden;
    margin-bottom: 0;
}
.menu {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 1);
    align-items: end;
    justify-content: center;
    box-sizing: border-box;
    padding-right: 4px;
    width: 100%;
    height: 50px;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

a.active {
    color: rgb(122, 122, 122);
}

.gallery {
    width: 100%;
}

img {
    margin-bottom: 5px;
}


/*Contact Page*/
.contact {
    padding: 35px 15px 120px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*Desktop Layout*/
@media (min-width: 1024px) {

    body {
        align-items: flex-start;
        font-size: 10px;
    }

    .box {
        margin: 0;
    }

    .top {
        position: sticky;
        top: 0;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 5px;
        width: 100%;
        margin-bottom: 5px;
        background-color: rgb(255, 255, 255);
        z-index: 100;
    }

    .logo-wrap {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .logo {
        height: 50px;
        width: auto;
    }

    .menu {
        flex: 1;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        height: 50px;
        background-color: transparent;
        padding-right: 0;
        padding-left: 0;
        gap: 0;
        line-height: 1;
        overflow: visible;
    }

    .contact {
        padding-top: 0;
        font-size: 10px;
    }

    .gallery-container {
        columns: 4;
        column-gap: 5px;
    }

    .gallery {
        width: 100%;
        display: block;
        margin-bottom: 5px;
    }

    img {
        margin-bottom: 0;
    }
}
