body {
    background-color: #1a1a1a;
    color: #fff;
    font-family: Consolas, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    padding: 0;
}

main {
    padding: 20px;
}

.description-block,
.features-block,
.download-block,
.screenshots-block,
.versions-block,
.code-block {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Add the box-shadow property here */
    margin-bottom: 20px;
    background-color: #222;
}

h2 {
    color: #00ADEF;
    border-bottom: 2px solid #00ADEF;
    padding-bottom: 10px;
}

p, ul {
    font-size: 130%;
}

a {
    /*text-decoration: none;*/
    color: white;
}

.download-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    background-color: #444;
}

.download-link:hover {
    background-color: #5b5b5b;
}

.download-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    fill: #fff;
}

/* Code block styles */
.code-block {
    border: 2px inset #444;
    padding: 20px;
    border-radius: 5px;
    background-color: #2b2b2b; /* Set the background color of the code block */
}

.code-block pre {
    /* Remove the background color from the pre element */
    color: #01d9d9;
    font-size: 18px;
    line-height: 1.4;
    padding: 0; /* Remove the extra padding */
    border-radius: 5px;
    overflow: auto;
}

.code-block code {
    display: block;
    white-space: pre;
    background-color: #2b2b2b; /* Set the background color of the code element */
}

/* Copy button styles */
.copy-button {
    background-color: #555;
    color: #fff;
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.copy-button:hover {
    background-color: #777;
}