.topBar {
    display: flex;
    height: 10px;
    font-size: smaller;
    background-color: #13092d;
    color: #ff0000;
    font-weight: bold;
    justify-content: center;
}
.header {
    width: 100%;
    padding: 0;
    text-align: center;
    overflow: hidden;
    height: 330px;
}

#container {
    /*max-width: 900px;*/
    margin: 0 auto;
    width: 100%;
}

#classPic {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

#flex {
    display: flex;
}

aside {
    background-color: #241445;
    width: 200px;
    padding: 20px;
    font-size: smaller;
}

main {
    background-color: #43256e;
    flex: 1;
    padding: 20px;
    order: 2;
}

footer {
    background-color: #13092d;
    height: 40px;
    padding: 10px;
    text-align: center;
}

h1,
h2,
h3 {
    color: #ed64f5;
}

h1 {
    font-size: 25px;
}

.box {
    background-color: #13092d;
    border: 1px solid #ed64f5;
    padding: 10px;
}

strong {
    color: #ed64f5;
}

@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }
}
