html {
    scroll-behavior: smooth;
}

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

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, #000000, #1a002b);
    color: #fff;
    line-height: 1.6;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.learn-more {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

nav ul {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    display: flex;
    justify-content: space-around;
    list-style-type: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    list-style-type: none;
}

main {
    padding: 20px;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
}

section h1 {
    color: #9900ff;
    margin-bottom: 10px;
}

section article {
    width: 66%;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

section article h2 {
    color: #6200a3;
    margin-top: 0;
}

footer {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
}

a {
    color: #6200a3;
    text-decoration: none;
}
