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

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(234, 70, 70, 0);
}
::-webkit-scrollbar-thumb {
    background: #989898;
    border-radius: 20px;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #212121;
    color: white;
    text-align: center;
    padding: 50px 0;
}

header h1 {
    font-size: 3rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.section {
    padding: 20px;
}

#features {
    background-color: #fff;
}

#features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature {
    flex-basis: 30%;
    margin-bottom: 30px;
    text-align: center;
}

.feature img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.feature h3 {
    margin-top: 10px;
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        flex-basis: 100%;
    }

    .install-steps {
        flex-direction: column;
    }

    .install-steps .step {
        flex-basis: 100%;
    }
}

#installation pre, #usage pre {
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
}

#authors ul {
    list-style-type: none;
    text-align: center;
}

#authors ul li {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.2rem;
}

#authors ul li a {
    color: #212121;
    text-decoration: underline;
}

#authors ul li a:hover {
    text-decoration: underline;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 1rem;
}