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

body {
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: white;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #FFA500;
}

.main-section {
    height: 100vh;
    background-image: url('background.png'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    text-align: center;
}

.main-section .content {
    color: white;
    z-index: 1;
}

.main-section h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.main-section p {
    font-size: 24px;
    margin-bottom: 40px;
}

.rocket-launch img {
    width: 500px;
    height: 500px;
    animation: rocketLaunch 7s infinite;
}

@keyframes rocketLaunch {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.info-section {
    padding: 100px 50px;
    text-align: center;
    background: #333;
    color: white;
}

.info-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.info-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}
