.menu {
    display: flex; 
    flex-direction: row; 
    justify-content: space-evenly; 
    flex-wrap: wrap;
    margin: 15px;
}

.menu-item a {
    border-right: .15em solid transparent;
    white-space: nowrap;
    margin: 0 auto;
    text-decoration: none;
    color: white;
    transition: 0.5s;
}

.menu-item a:hover {
    filter: invert(100%);
    color: cyan;
}

.menu-item a::before {
    content: " > ";
    color: transparent;
}

.menu-item a::after {
    content: " < ";
    color: transparent;
}

.menu-item a:hover::before {
    content: " > ";
    color: cyan;
}

.menu-item a:hover::after {
    content: " < ";
    color: cyan;
}

.socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
}

.socials a {
    display: flex;
    width: 60px;
    height: 60px;
    border: 1px white solid;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.socials img {
    width: 35px;
    height: 35px;
}

@media screen and (min-width: 800px) and (max-width: 1200px) {
    .socials a {
        width: 150px;
        height: 150px;
    }

    .socials img {
        width: 75px;
        height: 75px;
    }
}

@media screen and (max-width: 800px) {
    .socials a {
        width: 200px;
        height: 200px;
    }

    .socials img {
        width: 100px;
        height: 100px;
    }
}

.socials a:hover {
    filter: invert(100%);
    background-color: cyan;
}

.bordered-content {
    padding: 15px;
    border: 1px dashed rgba(255, 255, 255, 50%); 
    display: flex;
}

.bordered-content:hover + .bordered-content-subtitle {
    display: flex;
    color: white;
}

.bordered-content-subtitle {
    display: flex; 
    flex-direction: column; 
    text-align: left;
    font-size: 0.75em;
    color: transparent;
}

.bordered-content-subtitle:hover {
    display: flex;
    color: white;
}

.hidden {
    display: none;
}

.column {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    flex-direction: row;
}

.gallery-row {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 4px;
}

.gallery-column {
    /* flex: 50%; */
    display: flex;
    flex-direction: column;
    padding: 0 4px;
}

.gallery-column .column {
    margin-top: 8px;
    vertical-align: middle;
}

.container {
    border: 20px solid transparent;
    border-image: url(../images/border-full.svg) 100 round;
    padding: 20px;
    margin: 20px;
}

.art-thumbnail-600 {
    width: 600px;
    cursor: pointer;
}

.art-thumbnail-400 {
    width: 400px;
    cursor: pointer;
}

.art-thumbnail-300 {
    width: 300px;
    cursor: pointer;
}

.image-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    z-index: 1;
    background-color: rgba(0,0,0,0.75);
}

.image-modal-content {
    max-width: 100vw;
    max-height: 100vh;
}