@font-face {
  font-family: "Anonymous Pro"; 
  src: url("/assets/fonts/anon.woff2");
}

html {
    height: 100%;
    background: linear-gradient(to top, #151515, #252525);
    color: white;

    font-family: "Anonymous Pro", monospace;
}

body {
    margin: 0;
    padding: 0;
}

nav, .nav {
    background: linear-gradient(to bottom, blue, darkblue);
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    padding-top: 5px;
    padding-bottom: 5px;
    
    li {
        flex: 1;
        margin: auto;
        text-align: center;
    }
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a { color: white }

header { 
    text-align: center;
    padding: 5vh; 
    background-image: linear-gradient(#8e8e8e, #8e8e8e), url(/assets/img/bkg.webp);
    background-blend-mode: darken;
}

main {
    margin: auto;
    margin-top: 2vh;
    padding: 1vw;
    width: 50vw;
    border: 1px solid black;
    height: 70vh;
    overflow: scroll;
}

p, a, h1, h2 {
    filter: drop-shadow(4px 4px 1px black);
}

h1 {
    text-align: center;
}

#pet {
    position: fixed;
    bottom: 0;
    right: 0;
    height: 20vh;
}

.linkicon {
	height: 15px;
    width: 15px;
}