html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
    background-color: black;
    color: white;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.window {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    width: 100%;
    box-sizing: border-box;
}

.content {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

h1, h2, h3, h4, h5, h6 {
    color: #e0e0e0;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

a {
    color: #4a90e2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .window {
        width: 95%;
        padding: 15px;
    }
    .content {
        padding-left: 10px;
        padding-right: 10px;
    }
}
