@font-face {
        font-family: OldeTome;
        src: url("../fonts/OldeTome.ttf");
}
body{
    background-color: #050404;
    color: whitesmoke;
    text-align: center;
    cursor: url(../images/bat-cursor.cur), auto;
}
h1,h2,h3,h4{
    font-family: OldeTome;
}

#container {
    width: 70%;
    min-width: 750px;
    max-width: 950px;
    margin: 0 auto;
    padding-top: 10px;
    position: relative;
    z-index: 0;
}
main {
    min-height: 100vh;
    max-width: 100%;
    margin:0 auto;
    position: relative;
    z-index: 0;
    background-image: url(../images/backgrounds/gothic-black-royal.gif);
  }
  img.roof {
    margin:0 auto;
    margin-bottom: -5px;
    max-height: 450px;
    width: 100%;
  }

#header-container{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.sectionflex{
    display: flex;
    flex-direction: row;
    padding: 20px 15%;
    align-content: space-between;
    justify-content: space-between;
}

.box {
    border: 1px solid grey;
    border-radius: 3px;
    background-color: #050404;
    margin: 20px;
    padding-top: 10px;
    position: relative;
}

.box h1{
    position: absolute;
    top: -60px;
    text-align: center;
    left: 30px;
}
.sidebar {
    border: 1px solid blueviolet;
}



/* MARK: Stickers
 */
.stickers {
    display:flex;
    flex-flow:column;
    position:absolute;

    max-width:20%;
    height:95%;
    max-height:95%;

    text-align:center;
    justify-content: space-between;
    align-items: center;
    align-content: space-between;
}
.stickers.left {
    left:-8%;
    top:140px;
}
.stickers.right {
    right:-8%;
}
.stickers img {
    max-height:200px;
    object-fit: contain;
    position:relative;
    filter: drop-shadow(-2px 5px 5px grey);
    z-index:1;

    }
.stickers img.big {
    max-height:350px;
    margin:-5px;
    max-width:250px;
}



.scrollable {
    overflow: hidden;
    overflow-y: scroll;
}


/* MARK: Id Zones 
*/
#intro{
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

nav ul {
    list-style-type: none;
    padding-left: 0;
}

nav a {
    display: block;
}

#changelog {
    height: min-content;
}

#changelog ul {
    text-align: left;
    list-style-position: outside;
    padding-left: 40px;
}

#cool-sites{
    margin-left: -15px;
    width: 190px;
}

#cool-sites img{
    width: 88px;
    height: 31px;
    transition: transform 0.2s ease;
    filter: grayscale(100%);
}
#cool-sites img:hover{
    transform: scale(1.1);
    filter: none;
}