@font-face {
    font-family: "Jacquard12";
    src: url(https://alchemicarchive.neocities.org/fonts/Jacquard12.ttf) format("truetype");
}

@font-face {
    font-family: "Jacquard12C";
    src: url(https://alchemicarchive.neocities.org/fonts/Jacquard12C.ttf) format("truetype");
}

@font-face {
    font-family: "EagleLake";
    src: url(https://alchemicarchive.neocities.org/fonts/EagleLake.ttf) format("truetype");
}

@font-face {
    font-family: "Kings";
    src: url(https://alchemicarchive.neocities.org/fonts/Kings.ttf) format("truetype");
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

body {
    margin: 0;
    height: 100vh;
    background-color: #2b0600;
    color: #d5c5bb;
    display: block;
    justify-content: center;
    align-items: center;
    cursor: url(https://alchemicarchive.neocities.org/images/owlcursor.png), auto;
}

    h1 {
        color: #d5c5bb;
        font-family: "Jacquard12", serif;
        font-size: 85px;
    }
    
    h2 {
        color: #d5c5bb;
        font-family: "Kings", serif;
        font-size: 30px;
    }
    
    h3 {
        color: #d5c5bb;
        font-family: "EagleLake", serif;
        font-size: 20px;
    }
    
    h4 {
        color: #d5c5bb;
        font-family: "EagleLake", serif;
        font-size: 20px;
        font-style: italic;
    }
    
    p {
        color: #d5c5bb;
        font-family: "EagleLake", serif;
        font-size: 15px;
    }

a, button {
    cursor: url(https://alchemicarchive.neocities.org/images/owlpointer.png), auto;
}

a {
    color: #d5c5bb;
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: #ffcc66;
    text-shadow: 0 0 6px #ffcc66;
}

.banner {
    width: 100%;
    overflow: hidden;
    object-fit: fill
}

.banner img {
    width: 100%;
    height: 100px;
    object-fit: fill;
    display: block;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 310px;
    height: 100vh;
    background-image: url("/images/castle.png");
    background-repeat: repeat-y;
    background-position: center;
    background-size: cover;
    border-right: 6px solid #6E4D1E;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar a {
    margin-bottom: 15px;
    text-decoration: none;
    border: none;
    outline: none;    
    background: none;
    padding: 0;
}

.sidebar a img {
    height: auto;
    margin: 0 auto;
    transition: 0.2s;
}

.sidebar a img:hover {
    transform: translateX(8px) scale(1.03);
}

.main-content {
    margin-left: 240px;
    padding: 20px;
}

.home-content {
    margin-left: 670px;
    padding: 20px;
}

.mice-content {
    margin-left: 800px;
    padding: 20px;
}

.left-miceimage {
    position: fixed;
    left: 0;
    top: 0;
    width: 500px;
    height: 100vh;
    background-image: url("/images/littlemice.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
}

a:focus,
a:active {
    outline: none;
    border: none;
}

a img {
    outline: none;
    border: none;
}