@font-face {
    font-family: gaegu;
    src: url(/style/fonts/Gaegu-Regular.ttf);
  }

body {   
    font-family: gaegu;
    background-image: url(images/hall\ of\ el\ dither.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges; 

    margin: 0;
    padding: 10px;
}

#nav {
    display: flex;
    gap: 10px;
    background: linear-gradient(CadetBlue 0%, white 20%, rgb(195, 225, 226) 100%);
    border: solid black 1px;
    filter: drop-shadow(-1px 1px)
        drop-shadow(-1px 1px hotpink);
    padding: 5px;
    margin: 0;
    justify-content: flex-end;
    margin-top: -10px;
}

#page {
    background-color: ghostwhite;
    display: flex;
    border: solid black 1px;
    filter: drop-shadow(-1px 1px)
        drop-shadow(-1px 1px hotpink);
    padding: 5px;
    margin-bottom: 100px;
}

mark {
    background-color: hotpink;
    filter: drop-shadow(1px 1px);
    font-weight: bold;
    text-shadow: 1px 0px rgb(255, 255, 255),-1px -0px rgb(255, 255, 255),-0px -1px rgb(255, 255, 255),0px 1px rgb(255, 255, 255);
    border-radius: 4px;  
    padding: 2px;
}

#content {
    display: flex;
    min-width: 100%;
}

#left {
    width: 10%;
}
#right {
    flex: 1;
}

hr.rounded {
  border-top: 1px solid hotpink;
  min-width: 100%;
  border-radius: 5px;
}

.pages {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.pages a {
    margin: 0;
    padding: 0;
    background-color: red;
    min-width: 150px;
    width: 15%;
}
.topage {
    width: 100%;
    background-color: white;
    border: 1px black solid;
    padding: 0px;
    text-align: center;
    filter: drop-shadow(-1px 1px)
        drop-shadow(-3px 3px hotpink);
    
}
.topage img {
    height: 100px;
    width: 100%;
    margin-bottom: 3px;
    object-fit: fill;
}
.topage span {
    font-size: small;
    color: grey;
}

.icon {
    width: 80%;
    background-size: 80% 90%;
    background-repeat: no-repeat;
    background-position: center;
    margin: auto;
    display: block;
}

#stamps {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#stamps img {
    width: 100%;
    height: auto;
    display: block;
}





.column {
    width: 33%;
}

.box {
    border: solid black 1px;
    filter: drop-shadow(-1px 1px)
        drop-shadow(-1px 1px CadetBlue)
        drop-shadow(-1px 1px hotpink);
    width: 95%;
    margin: 10px;;
    background-color: white;
    border-radius: 5px;
}

div {
    padding: 10px;
}

pre {
    background-color: rgba(214, 214, 214, 0.527);
    margin: 0px;
    border: solid black 1px;
    white-space: pre;
    padding: 5px;
    overflow-x: auto;
}

h2 {
    border: 1px dashed black;
    display: inline-block;
    padding: 0px 10px 0px 10px;
    margin: 5px;
}

h3 {
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: bolder;
    color: white;
    text-shadow: 2px 0px black,-2px -0px black,-0px -2px black,0px 2px black;
    filter: drop-shadow(LightSkyBlue -2px 1px);
    padding: 3px;
}

.show {
    display: inline-block !important; 
}

.note {
    color: grey;
    display: none;
}

a {
    color: hotpink;
    text-decoration: none;
}
a:hover {
    color: lightskyblue;
    cursor: pointer;
}

button {
    border: black 1px solid;
    filter: drop-shadow(0px 0px 1px);
    background: linear-gradient(hotpink 0%, white 20%, hotpink 100%);
    text-align: center;
    display: block;
    padding: 4px;
}
button:hover {
    filter: brightness(0.95)
}