:root {
    --header-image: url('header.jpg');
    --body-bg-image: url('geocities99.gif');


}


@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
    font-style: italic;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
}

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    font-family: pixelify sans, sans-serif;

    background-size: 65px;
    color: #F9B2D7;
    background-image: var(--body-bg-image);
    

}

* {
    box-sizing: border-box;
}

#container {

    max-width: 900px;

    margin: 0 auto;

}

#container a {
    color: #F9B2D7;
    font-weight: bold;
    text-decoration: none;

}

#header {
    width: 100%;
    background-color: #DAF9DE;
    height: 500px;

    background-image: var(--header-image);
    background-repeat: no-repeat;
    background-size: cover;

}


#navbar {
    height: 40px;
    background-color: #F9B2D7;

    width: 100%;
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navbar li {
    padding-top: 10px;
}


#navbar li a {
    color: #F6FFDC;
    font-weight: 800;
    text-decoration: none;

}


#navbar li a:hover {
    color: #CFECF3;
    text-decoration: underline;
}

#flex {
    display: flex;
}


aside {
    background-color: #CFECF3;
    width: 200px;
    padding: 20px;
    font-size: smaller;
}


main {
    background-color: #DAF9DE;
    flex: 1;
    padding: 20px;
    order: 2;
}


#leftSidebar {
    order: 1;
}



footer {
    background-color: #F9B2D7;
    color: #F6FFDC;

    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;

}

h1,
h2,
h3 {
    color: #F9B2D7;
}

h1 {
    font-size: 25px;
}

strong {
    color: #8adbf0;
}

.box {
    background-color: #DAF9DE;
    border: 1px solid #F9B2D7;
    padding: 10px;
}

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #F9B2D7;
    color: #F6FFDC;
    padding: 5px;
}

@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}

.counter {
    display: flex;
    justify-content: center;

    background-color: #DAF9DE;
}