body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background-color: #888;
    color: white;
    padding: 20px;
    position: relative;
}

nav {
    position: absolute;
    top: 20px;
    right: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

@media (max-width: 768px) {
    header #logo {
        max-width: 60%;
        height: auto;
        margin-top: 50px;
    }

    img {
        max-width: 60%;
        height: auto;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav a {
        font-size: 14px;
        padding: 5px;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.button img {
    width: 20px;
    height: 20px;
}

section {
    width: 100%; /* Full width */
    padding: 40px 0; /* Vertical spacing */
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px; /* Some padding for responsiveness */
}

section:nth-child(even) {
    background-color: #f0f0f0;
}

section h1 {
    font-size: 2em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item img {
    width: 150px;
}

footer {
    background-color: #888;
    color: white;
    padding: 30px;
    margin-top: 20px;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

pre {
    background-color: #eee;
    padding: 10px;
    padding-right: 40px;
    border-radius: 5px;
    text-align: left;
    overflow-x: auto;
}

.copy-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

object {
    pointer-events: none;
}

.copy-button {
    position: absolute;
    top: 20px;
    right: 0px;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.copy-button object {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.copy-button:hover img {
    opacity: 1;
}

.warning {
    background-color: #FFEE8C;
    border: 1px solid #ffcc00;
    color: #333;
    text-align: center;
    padding: 10px;
}

.info {
    background-color: #FFEE8C;
    border: 1px solid #ffcc00;
    color: #333;
    text-align: center;
    padding: 10px;
}
