@font-face {
    font-family: "Alice";
    src: url(/Alice-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Seagram";
    src: url(/Seagram.ttf);
}

@media only screen and (max-width: 600px) {
    img {
        max-width: calc(100vw - 80px)
    }

    #piggy {
        max-width: 100px;
    }

    nav, navbutton {
        font-size: 30px!important;
    }
}

:root {
    --main: rgb(0, 0, 0);
    --secondary: rgb(177, 106, 139);
    --tertiary:rgb(254, 255, 199);
    --det:rgb(255, 227, 190);

}

.linkcontainer {
    list-style: none;
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
}

nav {
    background-color: var(--tertiary);
    margin: 5px;
    padding: 5px;
    font-size: 25px;
    border: outset;
    border-color: var(--det);
    max-width: fit-content;
    display: flex;
    align-self: center;
    font-family: Seagram;
}

navbutton {
    background-color: var(--tertiary);
    margin: 5px;
    padding: 5px;
    font-size: 25px;
    border: outset;
    border-color: var(--det);
    max-width: fit-content;
    display: flex;
    align-self: center;
}

navbutton:hover {
    border: inset;
    border-color: var(--det);
}

.hover {
    position: absolute;
    background-color: rgba(176, 179, 196, 0.5);
    padding: 10px;
    margin: 25px;
}

.hover::before{
    content: "now displaying: ";
}


.contents {
    display: inline;
    height: calc(100vh);
    overflow-y: scroll;
    
}

gallery{
    background-color: black;
}

main {    
    min-height: calc(100%);
    background: rgb(175, 175, 175);
    background-image:url(../../img/roughtile.gif) ;
    background-blend-mode: multiply;
    border: dashed;
    border-color: rgb(194, 194, 194);
    text-align: center;
    font-size: 20px; 
    margin: 10px;
   

}

main img {
    max-height: 87vh;
    margin: 20px;
}

container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.topbar {
    display: flex;
    width: 100%;
    max-height: 150px;
}

body {
    background-color: rgb(0, 0, 0);
    padding: 0px;
    font-family: Alice;
    margin: 0px;;
    height: 100vh;

}

html {

    padding: 0px;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) rgba(0, 0, 0, 0) ;
    
}

a {
    text-decoration: none;
    color:rgb(0, 0, 0);
}

a:visited {
    color: rgb(80, 80, 80);
}