html {
    cursor: url(cursors/Black\ White\ Precision\ Select.cur), auto;
}
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #d45f8c;
    color: #0f0909;
    font-family: eb garamond;
    font-weight:600;
    font-size: 1em;
    image-rendering: pixelated;
    background-image: url(images/bubble.jpg);
}
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******/




/*****CONTAINER*****/
.container  {
    display: grid;
    max-width: 80vw;
    margin: 0 auto;
    grid-gap: 5px;
    grid-template-columns: 60vw;
    padding: 0 auto;
}


header {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
}

nav {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
    border-radius: 5px;
}

content {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
    border-radius: 5px; 
}

footer {
    grid-row: 4 / 5;
    grid-column: 1 / 3;
    border-radius: 5px;
    text-align: center;
    font-weight: 100;
}

/******HEADER******/
header {
    font-size: 2em;
    font-family: angelic peace;
    font-weight: 100;
    font-style: italic;
    height: 90px;
    color: #221f1f;
    padding: 13px;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

header a{
    text-decoration: none;
    color: #221f1f;
}

 header h1{
    
    font-weight: 100;
    
 }


/******NAVIGATION******/
nav {
    width: 100%;
    background-color: #e9caca;
    border-color: #ffffffe8;
    color:#000000;
}
nav ul{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    font-family: bitcount single;
    font-weight: 300;
    padding: 0;
    list-style: none;
}
nav li{
    font-size: 1em;
}

nav a{
    font-size: 1.3em;
    color: #2e2e2e;
    text-decoration: none;
    z-index: 1;
}

nav a:nth-child(4){
    text-decoration: dotted;
    text-decoration-line: underline;
}
nav li:hover{
    color: #7e4772;
    text-decoration: underline;
}

/******CONTENT******/ 
content {
    display: flex;
    flex-direction: row;
    filter:brightness(1.15);
    font-size: 1.2em;
    font-weight: 100;
    font-family: eb garamond;
    padding: 25px;
    border-image: url(images/borders/notepaper.png);
    border-image-slice: 20 11 20 19 fill;
    border-image-width: 20px 11px 20px 19px;
    border-image-repeat: repeat round;
    border-style: solid;
    border-color: transparent;
    image-rendering: pixelated;
}

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;
}



/**********FOOTER*********/
footer {
    padding: 10px;
    background-color: #e9caca;
    border-color: #ffffffe8;
    z-index: 1;
    color:#000000;
}

footer a{
    color: #7e4772;
    text-decoration: none;
    font-size: 1em;
}

footer a:hover{
    text-decoration: underline;
}