body {
    height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 1rem;
    color: #666666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}




.main-container {

    display: flex;
    align-items:flex-start;
    justify-content: center;
    /*align-items: center;*/

    width: 80%;
    margin: auto;

    
}

.menu {

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    width: 15%;
    margin-top: 5%;
    margin-right: 5rem;
}

.menu .title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #444444;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.menu .sub-title {
    font-size: 0.8rem;
    font-weight: 200;
    text-align: end;
    color: #666666;
}

.menu .menu-items,
.menu .menu-items-cover {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.sub-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-content: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.menu .sub-menu a {
    color: #AAAAAA;
    font-style: italic;
}

.sub-menu-title {
    margin: 0.25rem 0;
    font-weight: 500;
}

.menu a {
    text-decoration: none;
    color: #666666;
}

p a {
    text-decoration: none;
    color: #3f3f3f;
    font-weight: 600;
}

.content {
    width: 70%;
    margin-top: 5%;
    margin-bottom: 5%;
}

.content .title {
    font-size: 1.2rem;
    color: #555555;
}

.content .intro {
    margin: 3rem 0;
}

.cover {

}

.cover img {
    max-width: 100%;
    max-height: 500px;
}

.mosaic {

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;

}

.mosaic .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mosaic img {
    width: 12rem;
    height: 12rem;
    object-fit: cover;
}


.mosaic img:hover {
    opacity: 0.5;
    cursor: pointer;
}

.logo {
    width: 16px;
    height: 16px;
    fill: #666666;
}


@media screen and (max-width: 600px) {

    body {
        font-size: 1.25rem;
        font-weight: 300;
    }

    .menu .title {
        font-size: 1.5rem;
        font-weight: 400;
    }


    .main-container {
        width: 95%;
        flex-direction: column;
        align-items: center;
    }

    .content {
        width: 90%;
        
    }


    .cover {
        /*display: none;*/
        width: 75%;
        margin: auto;
        margin-top: 3rem;
    }

    .menu {
        width: 100%;
        align-items: center;
        margin-right: 0;
    }

    .menu .menu-items {
        display: none;
        align-items: center;
    }

    .sub-menu-title {
        margin: 0.25rem 0;
        font-weight: 400;
    }

    .mosaic {
        justify-content: center;
        gap: 2.5rem;
        width: 100%;
        margin: auto;
    }

    .mosaic .overlay {
        z-index: 2;
    }

    .mosaic img {
        width: 100%;
        height: auto;
    }

    .mosaic img:hover {
        opacity: 1;
    }

    .menu .menu-items-cover {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
  }