body {
    background-color: #f4e4d3;
    color: #333;
    font-family: 'Press Start 2P';
    position: relative;
}

body::before {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('/static/images/rw_sunset.png');
    background-size: cover;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    opacity: 1;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: -1;
}

h1, h2, h3 {
    font-family: 'Press Start 2P', cursive;
}

.navbar {
    align-items: center;
    background-color: #f4e4d3;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 5rem;
    width: 60%;
}

.navbar-brand {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
}

.navbar-nav {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 5px 0;
    text-align: center;
    width: 100%;
}

.navbar-nav a {
    color: #333;
    font-family: 'Press Start 2P';
    font-size: .80rem;
    padding: 5px 10px;
    transition: color 0.3s;
}

.navbar-nav a:hover {
    color: #ff7f50;
    text-decoration: underline;
}

.navbar-nav li {
    margin: 0 1.5rem;
}

.nav-item {
    margin: 0;
}

p {
    font-size: 1.5rem;
    text-align: center;
}

pre {
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 0 1px rgba(0, 0, 0, 1);
    border-radius: 20px;
    background-color: rgba(133, 38, 117, 0.1);
}

/* ol li {

} */