html {
    cursor: url(cursors/Black\ White\ Precision\ Select.cur), auto;
}
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #adadad;
    color: #fff;
    font-family: eb garamond;
    font-weight:600;
    font-size: 1em;
    image-rendering: pixelated;
    background-image: linear-gradient(#00000050, #00000050), url(images/nyny.png);
    background-size: cover;
}
p {
    text-shadow: 0 0 6px #47474dcc;
}
::selection {
    filter: blur(5px);
    background-color: #ff10b798;
    color: #fff;
}

/**STUFF**/
::-webkit-scrollbar{
    width:1.5vw;
}
::-webkit-scrollbar-track{
    background-color: #f5e7e7;
    width: 1vw;
}
::-webkit-scrollbar-thumb{
    background-color: #4d494b59;
    border-radius: 8px;
    border-style:solid;
    border-width: 1px;  
    width: .8vw;
    border-color: #5555; 
}

/******OVERLAYS******/
.overlays {
    position:absolute;
    pointer-events: none;
    mix-blend-mode: multiply;
    filter: contrast(2);
}



/*****CONTAINER*****/
.container  {
    display: grid;
    max-width: 85vw;
    margin: 20px auto;
    grid-gap: 5px;
    grid-template-columns: 60vw;
    padding: 0 auto;
}
header, footer, content, marquee {
    padding: 10px;
    box-shadow:inset 2px 0 4px #00000088;
    border-style: solid;
    border-color: #0000003f;
    border-width: 1px;
    backdrop-filter: blur(3px);
}

header {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    border-radius: 30px 30px 5px 5px;
}

marquee {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
}
content {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    border-radius: 5px;
    
}
nav {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
}
footer {
    grid-row: 4 / 5;
    grid-column: 1 / 3;
    border-radius: 5px 5px 25px 25px;
    text-align: center;
    font-weight: 100;
}

/******HEADER******/
header {
    font-size: 1.5em;
    font-family: defonte thin;
    font-weight: 100;
    height: 80px;
    color: #ffffff;
    background-image: linear-gradient(#0000003b, #0000003b), url(images/dots.png) ;
}
header span{
    font-size: .5em;
    font-family: aquilinetwo;
}
header h1{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    text-shadow: 0 0 3px;
}

header h1:hover{
    text-decoration:underline;
}


/****MARQUEE****/
marquee {
    font-family: bitcount single;
    font-weight: 300;
    font-size: 1.3em;
    border-radius: 5px;
}
/******CONTENT******/ 
content {
    display: flex;
    flex-direction: row;
    filter:brightness(1.15);
    font-size: 1.2em;
    font-weight: 100;
    font-style:italic;
    font-family: eb garamond;
    padding: 20px;
    background-color: #3535358c;
}

content p{
    padding: 15px;
}

content img{
    border-radius: 25px;
    display: flex;
    align-items: left;
    height: 300px;
    width: auto;
    border-style: solid;
    border-color: #0000003f;
    border-width: 1px;
}

content li:first-child{
    list-style: none;
}

/******NAVIGATION******/
nav ul{
    display: flex;
    flex-direction: column;
}
nav li{
    font-size:1.5em;
    font-weight:400;
    backdrop-filter: blur(5px);
    border-style: solid;
    border-color:#55555525;
    border-width: 1px;
    border-radius: 5px 25px 25px 25px;
    padding: 10px;
    padding-left: 15px;
    position: relative;
    margin-bottom: 5px;
    right: 30px;
    transition: 0.5s ease;
    list-style: none;
    width: 100%;
    box-shadow:inset 2px 0 4px #00000088;
    font-size: 1.2em;
    background-color: #55555510;
}

a{
    color: #fff;
    text-decoration: none;
}

nav li:hover{
    transform: translate(10px);
    background-color: #fffafd54;
    color: #fff;
    text-shadow: 0 0 6px #47474dcc;
    
}

nav li span{
    background-color: #555;
}

/**********FOOTER*********/
footer {
    background-color: #4d494b59;
}

/********MEDIA QUERIES*******/

@media screen and (max-width: 800px) {
    marquee{
        grid-row: 2 / 3 ;
        grid-column: 1 / 3;
    }
    content {
    flex-direction: column;
    grid-row: 3 / 4;
    grid-column: 1 / 3;
    }
    content img{
    height: auto;
    width: 245px; 
    margin: 0 auto;
    }
    nav {
    grid-row: 4 / 5;
    grid-column: 1 / 3;
    }
    footer{
        grid-row: 5 / 6;
        grid-column: 1 / 3;
    }
}   


@media screen and (max-width: 463px) {
    header {
        height: 150px;
    }
}

