/*

    Theme Name: Katie's Dream lair

*/

body {
    background-image: url('assets/images/stars.gif');
    color: #B95DF3;
    font-family: "Quintessential", serif;
    ;
}

.header {
    display: flex;
    justify-content: center;
    margin: 40px 0px;
}

.header img {
    height: 92px;
    width: auto;
}

.header h1 {
    font-size: 72px;
    margin: 0;
}

.header a {
    text-decoration: none;
}

.sidebar {
    position: absolute;
    width: 200px;
    background-color: #EFD9FF;
    border: 4px outset #B95DF3;
}

.content {
    width: 1000px;
    margin: 0px auto;
}

.main {
    display: block;
    width: auto;
    margin-left: 225px;
    border: 4px outset #B95DF3;
    background-color: #EFD9FF;
    padding: 0px 20px;
}

/* Text elements */

h1 {
    font-size: 36px;
}

h2 {
    font-size: 24px;
}

p {
    font-family: serif;
}

a {
    color: #B95DF3;
}

a:hover {
    color: #E2BAFC;
}

/* Text formatting tools */

.center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.white {
    color: #ffffff;
}

.image {
    display: flex;
    justify-content: center;
}

/* Footer */

.footer {
    display: block;
    width: auto;
    margin: 40px 0px 40px 225px;
    border: 4px outset #B95DF3;
    background-color: #EFD9FF;
    padding: 0px 20px;
}

#menu-footer-1 {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0px;
}

#menu-footer-1 li {
    padding: 0px 10px;
}

@media (max-width: 1000px) {
    .header h1 {
        font-size: 48px;
        margin: 0;
    }

    .content {
        width: 100%;
        margin: 0;
    }

    .sidebar {
        display: block;
        position: relative;
        width: 80%;
    padding: 0px 20px;
        margin: 0px auto 40px auto;
    }

    .main {
        display: block;
        width: 80%;
        margin: 0px auto 40px auto;
    }

    .footer {
        display: block;
        width: 80%;
        margin: 0px auto 40px auto;
    }

    #menu-footer-1 {
        display: block;
        text-align: center;
    }
}