body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #ffffff;
    padding: 1rem 0;
    border-bottom: 2px solid #ccc;
}

nav {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.back-button {
    text-decoration: none;
    font-weight: bold;
    color: #007bff;
    font-size: 1rem;
    transition: color 0.3s;
}

.back-button:hover {
    color: #0056b3;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.presskit-section {
    padding: 2rem;
}

.presskit-section h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #007bff;
}

.presskit-section h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.presskit-section p, .presskit-section ul {
    margin-bottom: 1rem;
}

.presskit-section ul {
    list-style-type: disc;
    padding-left: 2rem;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #ffffff;
    color: #888;
    border-top: 2px solid #ccc;
    margin-top: 2rem;
}

.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    justify-items: center;
    margin-top: 1rem;
}

.screenshots-gallery img {
    width: 100%;
    height: auto;
    max-width: 300px; /* Adjust the max-width as needed */
    border-radius: 8px;
    border: 1px solid #ccc;
}
.code-box {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.code-box pre {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}
