#main-div {
    background-color: var(--main-bg);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.aside {
    background-color: var(--aside-bg);
}

.content {
    background-color: var(--content-bg);
}

#top-bar, #header, #menu, #warning, #breadcrumb, #slideshow, #content-top, #sidebar-left, #sidebar-right, #component, #content-bottom, #bottom, #footer, #copyright{
    
}

#top-bar {
    background-color: var(--top-bg);
    color: aliceblue;
    padding 5px 0;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

#header {
    background-color: var(--header-bg);
    min-height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

#menu {
   background-color: var(--menu-bg);
   min-height: 40px;
   display: flex;
    justify-content: center;
    align-items: center;
}


#content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 250px 250px;
    gap: 10px;
    grid-template-areas: 
    'content-top sidebar-left sidebar-right'
    'component sidebar-left sidebar-right'
    'content-bottom sidebar-left sidebar-right'
    'bottom bottom bottom'
    ;
}

#breadcrumb {
    grid-area: breadcrumb;
}

#warning {
    grid-area: warning;
    text-align: center;
}

#slideshow {
    grid-area: slideshow;
    padding: 20px 10px;
}

#top-1 {
    display: flex;
    flex-direction: column;
    gap: 5px;

}

#top-2 {
    display: flex;
    gap: 5px;
    flex-grow: 1;

}

#content-top {
    grid-area: content-top;
}
#sidebar-left {
    grid-area: sidebar-left;
}
#sidebar-right {
    grid-area: sidebar-right;
}
#component {
    grid-area: component;
    width: 100%;
}
#content-bottom {
    grid-area: content-bottom;
}
#bottom {
    grid-area: bottom;
}
#footer {
    grid-area: footer;
    min-height: 120px;
    background-color: var(--footer-bg);
}
#copyright {
    grid-area: copyright;
    text-align: center;
    background-color: black;
    color: wheat;
}

