
/* General Reset */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: white;
    background-color: #1b1f3a;
    background: linear-gradient(135deg, #1b1f3a, #0f1328);
}

header.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00c8ff;
}

nav.navigation a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav.navigation a:hover {
    color: #00c8ff;
}

main.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 80vh;
    background: url('storm-background.jpg') no-repeat center center/cover;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

main .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

main .hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

main .cta-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #00c8ff;
    color: #1b1f3a;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

main .cta-button:hover {
    background-color: #1b1f3a;
    color: #00c8ff;
}

footer.footer {
    text-align: center;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.9rem;
}
