@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Eater&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Butcherman&display=swap');
/* Reset some default styles */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Creeper",cursive;
    line-height: 1.6;
    background-color: #100114;
    /* background-image:url("darkcircle.png"); */
    color:#190220;
    background-image: url('racing-161326_1280.png');
    background-size: cover;
    background-attachment: fixed;
     background-position: middle;
}



/* Navbar styling */

.navbar {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
}

.logo{
    font-size: 1.5em;
    font-weight: bold;
    color: #111202;
}

.nav-links{
    list-style: none;
    display: flex;
}

.nav-links a{
    color: rgb(16, 26, 20);
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.3s ease;
}

.nav-links a:hover,
.nav-links a:active {
    background-color: #555;
    border-radius: 4px;
}

/* Page content */
.hero, .content {
    padding: 60px 20px;
    text-align: center;
}

footer{
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
@media all and (max-width: 500px){
    .nav-links{ 
        flex-direction: column;
    }
} Body {color: #18031e;}
@media (orientation:  landscape) {
  body { background-color: #0b0404; }
}
@media (orientation:  portrait) {
  body { background-color: #090202; }
} 