@font-face { font-family: Lordish; src: url('../fonts/Lordish-Regular.ttf'); }
@font-face { font-family: DS-digit; src: url('./fonts/DS-DIGIT.TTF'); }
@font-face { font-family: Apple-Kid; src: url('./fonts/Apple-Kid.ttf'); }

body {
    background-image: url('Background.jpg');
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.Banner {
    position: relative;
    text-align: center;
    background-color: transparent;
    font-family: Lordish;
    margin: 0; /* Resetting margin */
    padding: 0; /* Resetting padding */
}
.Banner img {
    width: 100%;
    display: block; /* Remove any default inline spacing */
}
.Banner t {
    font-size: 5vw;
    text-decoration: none;
    color: black;
    text-shadow: maroon 0 0 10px; /* #451d25 */

    position: absolute;
    transform: translate(-50%, -50%);
    top: 20%;
    left: 70%;
}
.Banner a {
    font-size: 7vw;
    text-decoration: none;
    color: #000;
    text-shadow: #DA0 0 0 10px;

    position: absolute;
    transform: translate(-50%, -50%);;
    top: 50%;
    left: 5%;
}

/* Apply custom color scheme to blog posts */
.post {
    color: black;
    background-color: white;
} 
.post h1 {
    color: white;
    background-color: #15178a;
}

.prev, .next {
    /* color: white; */
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: #15178a;/*rgba(69,29,37,0.8);*/
    color: white;
}

