/* fonts */
/* Courier Prime */
    @font-face {
        font-family: 'Courier Prime';
        src: url(fonts/CourierPrime-Regular.ttf);
    }
    @font-face {
        font-family: 'Courier Prime';
        src: url(fonts/CourierPrime-Bold.ttf);
        font-weight: bold;
    }
    @font-face {
        font-family: 'Courier Prime';
        src: url(fonts/CourierPrime-Italic.ttf);
        font-style: italic;
    }
    @font-face {
        font-family: 'Courier Prime';
        src: url(fonts/CourierPrime-BoldItalic.ttf);
        font-style: italic;
        font-weight: bold;
    }
/* Nunito */
    @font-face {
        font-family: 'Nunito';
        src: url(fonts/Nunito-Regular.ttf);
    }
    @font-face {
        font-family: 'Nunito';
        src: url(fonts/Nunito-Bold.ttf);
        font-weight: bold;
    }
    @font-face {
        font-family: 'Nunito';
        src: url(fonts/Nunito-Italic.ttf);
        font-style: italic;
    }
    @font-face {
        font-family: 'Nunito';
        src: url(fonts/Nunito-BoldItalic.ttf);
        font-weight: bold;
        font-style: italic;
    }
/* stylistic fonts */
    @font-face {
        font-family: 'Special Elite';
        src: url(fonts/SpecialElite-Regular.ttf);
    }
/* webpage */
    body {
        font-family: 'Courier Prime', courier;
        /* "color" is the general text color! */
        color: #ffffff;
        margin: 0;
        background-color: #ffffff;
        background-image: url(https://hannahhworld.neocities.org/liquid%20background%20blue.gif);
    }
    #flex {
        display: flex;
    }
    #container {
        max-width: 900px;
        /* this is the width of your layout! */
        margin: 0 auto;
        /* this centers the entire page */   
    }
    /* These are what links inside the container look like*/
    #container a {
        font-weight: normal;
    }
    #header {
        width: 890px;
        /* color of the header */
        background-color: #1A9EDB;
        height: 150px;
        background-image: url();
        background-size: 100%;
        text-align: center;
        padding-top: 1%;
        padding-bottom: 1%;
        border-bottom: solid;
        border-left: solid;
        border-right: solid;
        border-color: rgb(124, 18, 70);
        border-width: 5px;
    }
    /* sidebar stuff */
    aside {
        background-color: rgb(124, 18, 70);
        width: 175px;
        padding: 20px;
    }
    aside a {color: white;}
    aside a:hover {color: #1B9EDB}
    aside li {
        margin-bottom: 10px;
    }
    /* main is the main content area */
    main {
        background-color: #1A9EDB;
        flex: 1;
        padding: 20px;
        order: 2;
        border-right: solid;
        border-left: solid;
        border-color: rgb(124, 18, 70);
        border-width: 5px;        
    }
    main a {color: #ffffff;}
    main a:hover {color: #E8539B;}
    main li {
        margin-bottom: 10px;
    }
    main img {
        display: block;
        margin: auto;
    }
    .box-header {
        background-color: rgb(124, 18, 70);
        padding-left: 5px;
        padding-right: 5px;
        width: 100%;  
        text-align: center;
    }
    #status-area {
        margin-top: 40px;
    }
    #status-area table {
        border-spacing: 5px;
    }
    .status {
        background-color: #002149;
        width: 50%;
        text-align: center;    
        height: 100%;
        vertical-align: top;
    }
    .status h1,.status h2,.status h3, .status h4{
        background-color: rgb(124, 18, 70);
        width: 100%;
        text-align: center;
        margin-top: 0;
    }
    .interests-container-row {
        display: table-row;
        width: 100%;
    }
    .interests-container-cell {
        display: table-cell;
        width: 50%;
    }    
    footer {
        background-color: rgb(76, 8, 41);
        /* background color for footer */
        width: 800;
        height: 80px;
        padding: 10px;
        text-align: center;
        /* this centers the footer text */  
    }
    footer a {color: #ffffff}
    footer a:hover {color: #E8539B;}
    .box {
        background-color: #002149;
        border: 1px solid #1B9EDB;
        padding-left: 5px;
        padding-right: 5px;
        width: 100%;
    } 
    .box li{
        margin-bottom: 5px;
    }
    #leftSidebar {
        order: 1;
    }

    #rightSidebar {
        order: 3;
    }
/* IDK what this stuff does it was in the preset; i think it has to do with phones */
@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }
    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }
}
