/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: Verdana, sans-serif;
    color: #ffffff;
    background-color: #121212;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1e1e1e;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 1.8em;
    color: #4fc3f7;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4fc3f7;
}


/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1e1e1e, #4fc3f7);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background-color: #1e1e1e;
    color: #b0bec5;
}
