body{
    font-family:sans-serif;
    font-size:16px;
    line-height: 1.6em;
    background: black;
    color:white;
}
h1{
    font-family:sans-serif;
    font-size:9em;
    line-height: 1.1em;
    text-transform: uppercase;
    margin:0;
}
h2{
    font-weight: 400;
    margin: 0 0 0 6px;
    font-size:3em;
    line-height: 1em;
}
h3{
    font-size:1.6em;
    line-height: 1em;
}
#gallery, #main-menu-close > ul{
    list-style:none;
    padding:0;
}
#gallery li, #main-menu-close > ul li{
    position: relative;
}

main ul{
    list-style: decimal;
}
#lively{
    display:flex;
    flex-flow: column nowrap;
}
#livelyGallery{
    display:flex;
    width:120%;
    flex:1;
    position: relative;
    left:-10%;
}
#livelyGallery img{
    flex:1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: flex ease-in-out 1s;
    transform: skewX(-13deg);
}
#livelyGallery div:hover{
    flex:5;
}
#wv2{
    display:flex;
    flex-flow: column nowrap;
}
#wv2 img{
   width:800px;
}
#signal > div{
    width:100%;
    display: flex;
    flex-flow: row nowrap;
}
#signal > div > div{
    flex:1;
    position: relative;
}
#signal img{
    width:100%;
}
main > div{
    border-bottom: 10px #191914 solid;
    font-size: 1.1em;
}
#gallery{
    display:grid;
    border:solid lightgray 3px;
    width:80%;
    border-radius: 16px;
    padding:10px;
}
header img{
    width:0;
}
p.description{
    display:block;
    margin:0;
    padding:10px;
    background: black;
    color:white;
}
p.description br {
    display: none;
}
@media (min-width:1081px) {
    p.description{
        display:block;
        position:absolute;
        margin:0;
        top:10px;
        right:10px;
        padding:10px;
        max-width:40%;
        text-align:right;
        background: black;
        color:white;
    }
    p.description br {
        display: block;
    }
    #gallery{
        display:grid;
        grid-template-columns: 1fr 1fr;
        border:solid lightgray 0px;
        width:100%;
        border-radius: 0px;
        padding:0px;
    }
    header{
        max-height: 100vh;
        max-width: 100vw;
        overflow:hidden;
    }
    main > div{
        min-height: 100vh;
        height: max-content;
        max-width: 100vw;
        border-bottom:0px #191914 solid;
        overflow:hidden;
    }
    header img{
        width:100%;
        display:block;
    }
}
@media (min-width:1280px){
    #gallery{
        grid-template-columns: repeat(4, 1fr);
    }
}
@media(any-hover:hover) and (min-width:1081px){
    #gallery > li .description{
        opacity: 0;
        transition: opacity 0.3s linear;
    }
    #gallery > li:hover .description{
        opacity: 1;
    }
    #signal > div > div .description{
        opacity: 0;
        transition: opacity 0.3s linear;
    }
    #signal > div > div:hover .description{
        opacity: 1;
    }
}