body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: beige;
    padding: 200px;
}

.banner {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.banner img {
    width: 45%;
    height: auto;
    object-fit: contain;
}

/* MAIN CONTENT AREA */
.main-area {
    display: flex; /* Child elements aligned row-wise */
    align-items: center; /* Align items to the top of the div */
    justify-content: center;
}
.sidebar {
    width: 150px;
    height: 300px;
    background-color: black;
    overflow-y: scroll;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.sidebar a {  /* Anchor tags within class 'sidebar' */
    display: block;
    color: white;
    text-decoration: none;
    padding: 8px;
    margin-bottom: 4px;
}
.sidebar a:hover { /* Hover effect */
    background-color: #444
}
.content {
    flex: 1;
    background-color: white;
    padding: 20px;
    margin-left: 20px;
    height: 500px;
    width: 500px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    overflow-y: scroll;
}

footer {
    padding: 20px;
}

/* OTHER */
.pixel-art {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}
