@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');
    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: 10vw;
    text-decoration: none;
    color: black;
    text-shadow: maroon 0 0 10px; /* #451d25 */

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

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

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

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

