* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}
 
body {
    background: #eee;
    color: #444;
    -webkit-font-smoothing: antialiased;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
            font-size: 20px;
    font-weight: bold;
    height: auto !important;
    height: 100%;
    min-height: 100%;
    text-rendering: optimizeLegibility;
}
 
header {
    background-color: rgb(140, 193, 193);
    border-bottom: 1px solid rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
    text-align: center;
}
 
    header > div#logo {
        line-height: 70px;
        position: relative;
    }
 
    header > .menuDown {
        box-shadow: 0 3px 5px rgba(0,0,0,.15);
    }
 
    header > .menuUp {
        box-shadow: none;
    }
 
        header > div#logo > h1 {
            color: white;
            font-weight: 300;
        }
 
        header > div#logo > div#navToggle {
            background-color: rgba(0,0,0,.15);
            position: absolute;
            right: 0;
            top: 0;
            transition: 300ms all ease;
        }
 
            header > div#logo > div#navToggle:hover {
                background-color: rgba(0,0,0,.1);
            }
 
            header > div#logo > div#navToggle > a {
                color: rgba(255,255,255,.85);
                display: block;
                font-size: 0.85em;
                font-weight: 600;
                padding: 0 2.5rem;
                text-decoration: none;
                transition: 300ms all ease;
            }
 
                header > div#logo > div#navToggle:hover > a {
                    color: rgba(255,255,255,1);
                }
 
    header > nav {
        background-color: white;
        display: none;
        flex: 1;
        transform: 300ms all ease;
    }
 
        header nav > ul {
            list-style-type: none;
        }
 
            header nav > ul > li {
                border-bottom: 1px dotted rgba(0,0,0,.1);
                position: relative;
            }
 
                header nav > ul > li:last-of-type {
                    border-bottom: none;
                }
 
                header nav > ul > li > a {
                    display: block;
                    color: rgba(0,0,0,.65);
                    font-weight: 700;
                    padding: 1.5rem 0;
                    text-decoration: none;
                    transition: 250ms all ease;
                }
 
                    header nav > ul > li > a span.toggle {
                        background-color: rgba(0,0,0,.05);
                        border-radius: 3rem;
                        color: rgba(0,0,0,.25);
                        font-size: 0.75em;
                        font-weight: 500;
                        padding: 2px 8px;
                        text-transform: lowercase;
                    }
 
                    header nav > ul > li > a span.caret {
                        display: none;
                    }
 
                    header > nav > ul > li:hover > a {
                        color: rgb(140, 193, 193);
                    }
 
            header > nav > ul > li > nav {
                background-color: rgb(51,51,51);
                border-radius: 1.5em;
                box-shadow: 0 2px 8px rgba(0,0,0,.6);
                display: none;
                overflow: hidden;
                position: absolute;
                right: 5%;
                width: 90%;
                z-index: 100;
            }

 
                header > nav > ul > li > nav > ul > li > a {
                    color: rgba(255,255,255,.85);
                    transition: 300ms all ease;
                }
 
                    header > nav > ul > li > nav > ul > li:hover > a {
                        background-color: rgba(0,0,0,.6);
                        color: rgba(255,255,255,1);
                    }
 
 #thisisexplanation    {
    position: relative;
    top: 200px;
    left: 5%;
    width: 90%;
    height: 300px;
    float: left;
    font-size: 16px;
        z-index: -1;
}

#desktoponly  {
    position: relative;
    float: left;
    margin-top: 20px;
    font-size: 16px;
}

#interests  {
    position: relative;
    top: 200px;
    float: left;
    height: 500px;
    width: 95%;
     display: flex;
    flex-direction: column;
}

#interestboxes  {
    position: relative;
    top: 50px;
    left: 10%;
    list-style-type: none;
    width: 0%;
    height: 250px;
        flex: 1;
}

#interestboxes > ul  {
    list-style-type: none;
}

#interestboxes > ul > li {
    position: relative;
    display: inline-block;
    height: 80px;
    width: 80px;
        margin: 10px;
    border: 1px solid black;
    z-index: 2;
}

.img-interests  {
    width: 80px;
    height: 80px;
}
 
/* Medium screens */
@media all and (min-width: 580px) {
    header > div#logo > div#navToggle {
        display: none;
    }

 
    header {
        background-color: white;
        flex-direction: row;
        line-height: 90px;
        padding: 0 3rem;
        position: fixed;
        text-align: left;
        width: 100%;
    }
 
        header > div#logo {
            background-color: transparent;
            line-height: 90px;
        }
 
            header > div#logo > h1 {
                color: rgb(140, 193, 193);
            }
 
    header > nav {
        background-color: transparent;
        display: block;
    }
 
        header > nav > ul {
            display: flex;
            flex-flow: row wrap;
            justify-content: flex-end;
        }
 
            header nav > ul > li {
                border-bottom: none;
            }
 
                header nav > ul > li > a {
                    padding: 0 1.25rem;
                }
 
                    header nav > ul > li > a span.toggle {
                        display: none;
                    }
 
                    header nav > ul > li > a span.caret {
                        border-bottom: 4px solid transparent;
                        border-top: 4px solid rgba(0,0,0,.65);
                        border-right: 4px solid transparent;
                        border-left: 4px solid transparent;
                        border-radius: 1px;
                        content: "";
                        display: inline-block;
                        height: 0;
                        margin: 0 0 0 .25rem;
                        transition: 250ms all ease;
                        width: 0;
                        vertical-align: middle;
                    }
 
                        header nav > ul > li:hover > a span.caret {
                            border-top-color: rgb(140, 193, 193);
                            transform: rotate(270deg);
                        }
 
    header > nav > ul > li:hover > nav {
        background-color: rgb(51,51,51);
        border-radius: .25em;
        box-shadow: 0 2px 8px rgba(0,0,0,.6);
        display: block;
        line-height: 3em;
    }

    #albumnav {
        width: 170px;
        right: -50%;
    }

    #filmnav   {
        width: 170px;
        right: -40%;
    }

    #booknav  {
        width: 170px;
        right: -30%;
    }

    #concertnav   {
        width: 170px;
        right: 0%;
    }

#thisisexplanation   {
    position: relative;
    top: 200px;
    left: 5%;
    width: 90%;
    height: 400px;
    float: left;
    font-size: 16px;
        z-index: -1;
}

#desktoponly  {
    position: relative;
    float: left;
    margin-top: 20px;
    font-size: 16px;
}

#interests  {
    position: relative;
    top: 200px;
    float: left;
    height: 250px;
    width: 90%;
     display: flex;
    flex-direction: column;
    text-align: center;
        font-size: 20px;
    font-weight: bold;
}

#interestboxes  {
    position: relative;
    top: 50px;
    left: 10%;
    list-style-type: none;
    width: 80%;
    height: 250px;
        flex: 1;
}

#interestboxes > ul  {
    list-style-type: none;
}

#interestboxes > ul > li {
    position: relative;
    display: inline-block;
    height: 80px;
    width: 80px;
        margin: 10px;
    border: 1px solid black;
    z-index: 2;
}

.img-interests  {
    width: 80px;
    height: 80px;
}

}


@media all and (max-width: 580px) {
    #desktoponly  {
        display: none;
    }

    #alt_opt    {
        display: none;
    }

     header > div#logo > h1 {
            color: white;
            font-weight: 300;
            text-transform: lowercase;
            font-size: 22px;
            text-align: left;
            padding-left: 30px;
        }

    #thisisexplanation  {
    position: relative;
    top: 80px;
    left: 5%;
    width: 90%;
    height: 400px;
    float: left;
    font-size: 16px;
    z-index: -1;
}

}
