/* style.css */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
}

nav {
    background-color: #1e1e1e;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
}

.container {
    padding: 20px;
    text-align: center;
}

input[type="text"],
input[type="password"],
input[type="number"],
textarea {
    width: 300px;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: #28a745;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

footer {
    background-color: #1e1e1e;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

#game-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border: 2px solid #fff;
    background: linear-gradient(to top, #000428, #004e92);
}

#plane {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 50px;
    height: 50px;
    background-image: url('images/rocket.png'); /* Use your rocket image */
    background-size: contain;
    background-repeat: no-repeat;
    animation: none;
}

#stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    height: 2px;
    width: 2px;
}

#fog {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(10px);
    z-index: 1;
}

#result {
    margin-top: 20px;
    font-size: 18px;
    color: #28a745; /* Green color for results */
}

@keyframes fly {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-300px);
    }
    100% {
        transform: translateY(0);
    }
}
