/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */
body {
    color: #ffffff;
    background: black;
    background-image: url("http://thedntst.com/assets/diagmonds.png");
}

h2, h3 {
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
}

p {
    line-height: 1.6em;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: black;
}

.pure-g-r img {
    width: 250px;
    height: 150px;
}

/*button:hover {
    background-color: black;
}*/

/*
 * -- Layout Styles --
 */
.l-content {
    margin: 0 auto;
}

.l-box {
    padding: .5em 2em;
    /*margin: 0;*/
}

/*
 * -- MENU STYLES --
 * Make the menu have a very faint box-shadow.
 */
.pure-menu {
    box-shadow: 0 1px 1px rgba(0,0,0, 0.10);
}



/*
 * -- BANNER --
*/
.banner {
    background: transparent url('http://thedntst.com/assets/diagmonds.png') 0 0 repeat fixed;
    text-align: center;
    /*background-size: cover;*/
    height: 175px;
    width: 100%;
    /*margin-bottom: 3em;*/
    display: table;
}

    .banner-head {
        display: table-cell;
        vertical-align: middle;
        margin-bottom: 0;
        font-size: 4em;
        color: white;
        font-weight: 500;
        /*text-shadow: 0 1px 1px black;*/
    }



/*
 * -- DNTST TABLE WRAPPER --
 * This element wraps up all the dntst table elements
 */
 .pricing-tables,
 .information {
    max-width: 980px;
    margin: 0 auto;
 }
.dntst-tables {
    margin-bottom: 3.125em;
    text-align: center;
}

/*
 * -- DNTST TABLE  --
 * Every dntst table has the .dntst-table class
 */
.dntst-table {
    /*border: 1px solid #ddd;*/
    margin: 0 0.5em;
    /*padding: 0 0 3em;*/
}

#no-margin {
    margin-bottom: 0;
}

.footer {
    text-align: center;
}
    .footer a {
        color: #ddd;
    }



/*
 * -- TABLET MEDIA QUERIES --
 * On tablets, we want to slightly adjust the size of the banner
 * text and add some vertical space between the various pricing tables
 */
@media(max-width: 767px) {

    .banner-head {
        font-size: 3em;
    }
    /*.dntst-table {
        margin-bottom: 2em;
    }*/
    .pure-g-r>[class *="pure-u-"] {
        width: 50%;
        margin-bottom: 1em;
    }

}

/*
 * -- PHONE MEDIA QUERIES --
 * On phones, we want to reduce the height and font-size of the banner further
 */
@media (max-width: 480px) {
    .banner {
        height: 100px;
        background: transparent url('http://thedntst.com/assets/diagmonds.png') fixed;
    }
    .banner-head {
        font-size: 2em;
    }
    .dntst-tables {
        margin-bottom: 1em;
    }
    .pure-g-r img {
        height: 100px;
    }
}

@media (max-width: 362px) {
    .pure-menu.pure-menu-horizontal>.pure-menu-heading {
        display: block;
        text-align: center;
    }
    .pure-menu>ul {
        padding-left: 19.5px;
        padding-right: 15.5px;
    }
}
