body {
    font-family: 'Verdana', sans-serif;
    background-color: #121212;
    color: #E0E0E0;
    margin: 0;
    padding: 0;
    display: flex;
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}
.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.sidebar {
    position: fixed;
    top: 70px; /* Space for sticky header */
    left: 0;
    height: calc(100% - 70px);
    width: 250px;
    background-color: #1E1E1E; /* Keep this consistent */
    padding-top: 20px;
    padding-left: 15px;
    overflow-y: auto;
    border-right: 1px solid #BB86FC;
    text-align: left; /* Override text-align for sidebar */
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000000;
}

p {
    font-size: 1.2em;
    line-height: 1.5;
}

.button {
    display: inline-block;
    background-color: #ff6ac1;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #7d5bbe;
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .button {
        font-size: 0.8em;
        padding: 8px 16px;
    }
}
