/* ===========================================
==========     RESET STYLESHEET     ==========
=========================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
:root {
    /* color scheme vista college */
    --colorvista-1: #fff166;
    --colorvista-2: #ec644a;
    --colorvista-3: #e56a54;
    --colorvista-4: #00555c;
    --colorvista-5: #f5f5f5;
    --colorvista-6: #3c3c3c;
    --colorvista-default-black: #000;
    --colorvista-default-white: #fff;

    /* color scheme vista college */
    --defaultfont: 'raleway', sans-serif;
}

/* ===========================================
==========    STANDARD LAYOUT       ==========
=========================================== */
body {
    overflow: hidden;
    font-family: var(--defaultfont);
}

.wrapper{
    display: flex;
    flex-flow: row wrap;
    height: 100vh; /* Set height to 100% of viewport height */
    background-color: #F5F5F5;
}
.wrapper > * {
    flex:1 100%;

}
.header{
    width: 100%;
    text-align: center;
}
.footer{
    width: 100%;
    text-align: center;
}
/* center */
.main{
    text-align: center;
    color: red;
}
.aside-1{
    text-align: center;
    color: blue;
}
.aside-2{
    text-align: center;
    color: darkgoldenrod;
}
.center{
    text-align: center;
}

/* mobile friendly */

@media all and (min-width:660px){
    .aside{flex: 1 0 0;}
}

@media all and (min-width: 800px){
    .main{flex: 1 0px;}
    .aside-1{order: 1;}
    .main{order: 2;}
    .aside-2{order: 3;}
    .footer{order: 4;}

}

/* ===========================================
==========      SYSTEM: Info        ==========
=========================================== */



/* ===========================================
==========     SYSTEM: Workshop     ==========
=========================================== */



/* ===========================================
==========     SYSTEM: Calendar     ==========
=========================================== */




/* ===========================================
==========     SYSTEM: Exam         ==========
=========================================== */



/* ===========================================
==========                          ==========
=========================================== */



