/*

Colors from https://www.colourlovers.com/palette/4594558/%7Bshining_bright%7D
Much love! <3

*/

:root {
    --color-brand: #ff3300; /* rgb(73, 1, 99) */
    --transition: all 0.3s ease-out;
}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
    background: #eee;
    color: #737373;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    line-height: 1.5;
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    transition: var(--transition);
}

body.lights-out {
    background: #000;
    color: #fff;
}

#page {
    padding: 15px;
    margin: 0 auto;
    max-width: 800px;
}

#logo {
    border-bottom: none;
    display: block;
    height: auto;
    margin: 15px auto 30px auto;
    width: 200px;
}

#switch {
    background: url(../images/switch-sprite) no-repeat top right;
    background-size: 200% 100%;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    height: 68px;
    width: 45px;
}

#switch.is--off {
    background-position: top left;
}

a {
    color: var(--color-brand);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    background-color: var(--color-brand);
    color: #fff;
}

h1 {
    color: #fff;
    font-size: 1.1em;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1;
    margin: 0;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

h1::before {
    background: #737373;
    bottom: 0;
    content: '';
    left: -9999em;
    position: absolute;
    right: -9999em;
    transition: var(--transition);
    top: 0;
    z-index: -1;
}

body.lights-out h1 {
    color: #737373;
}

body.lights-out h1::before {
    background: #fff;
}

h2 {
    font-size: 1.3em;
    font-weight: 900;
    line-height: 1;
    margin: 30px 0 15px 0;
}

ul {
    padding: 0;
}

ul li {
    margin-left: 20px;
}

ul li + li {
    margin-top: 5px;
}

.address-entity {
    display: inline-block;
    width: 90px;
}

@media only screen and (min-width: 600px) {

    #page {
        max-width: 600px;
    }

    #logo {
        margin-right: 0;
        width: 270px;
    }

    h1 {
        font-size: 1.5em;
    }
}

@media only screen and (min-width: 800px) {
    
    #page {
        max-width: 800px;
    }

    #logo {
        margin-bottom: 45px;
        margin-top: 30px;
        width: 300px;
    }

    h1 {
        font-size: 2em;
    }

    ul {
        column-count: 2;
            -moz-column-count: 2;
            -webkit-column-count: 2;
    }

    ul li {
    
    }
}
