@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('Background3.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: #DA0;
    text-shadow: black 0 0 10px; 
    position: absolute;
    transform: translate(-50%, -50%);
    top: 52%;
    left: 75%;
}
.Banner a {
    font-size: 10vw;
    text-decoration: none;
    color: #DA0;
    text-shadow: black 0 0 10px;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 52%;
    left: 30%;
}

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

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

