body {
    background: linear-gradient(to bottom, #0b0c2a, #1a1b3c);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 48px;
    color: #00bfff;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    color: #00bfff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: white;
}

.about {
    width: 70%;
    margin: 50px auto;
    text-align: center;
    background-color: #1a1b3c;
    padding: 20px;
    border-radius: 10px;
}

.about h2 {
    font-size: 36px;
    color: white; 
    margin-bottom: 20px;
}

.about p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ddd; 
}
