﻿/*Custom stylesheets*/

body {
    padding: 0;
    margin: 0;
    font-family: 'Roboto Condensed';
    color: #000;
    font-size: 24px;
}

h1 {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 48px;
    text-align: center;
    text-transform: uppercase;
    margin: 70px;
}

header {
    height: 336px;
    background: #3673c0;
    padding-top: 45px;
    padding-left: 65px;
}

    header .title {
        color: white;
        font-family: 'Roboto';
        font-size: 80px;
        line-height: 120px;
        text-transform: uppercase;
        width: 400px;
        letter-spacing: -5px;
    }

nav .menu a, nav .menu a:visited {
    margin-top: 20px;
    font-family: 'Roboto Condensed';
    color: #000;
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
}

section.review {
    margin-bottom: 30px;
}

    section.review article {
        font-size: 18px;
    }

footer {
    margin-top: 50px;
    height: 300px;
    background: #000;
    color: white;
    font-family: 'Roboto Condensed';
    font-size: 30px;
    letter-spacing: -2px;
    position: relative;
}

    footer .copyright {
        margin-top: 250px;
        margin-left: 20px;
    }

    footer .quicklinks {
        margin-top: 20px;
        margin-right: 20px;
    }

        footer .quicklinks .linkstitle {
            margin-bottom: 20px;
        }

        footer .quicklinks ul.links {
            margin: 0;
            padding: 0;
            list-style: none;
        }

            footer .quicklinks ul.links li {
                list-style: none;
            }

                footer .quicklinks ul.links li a,
                footer .quicklinks ul.links li a:visited {
                    color: white;
                }

.bookrow {
    margin-bottom: 40px;
}

.cover {
    text-align: center;
}

.slogan {
    font-size: 0.9em;
    text-align: center;
}

p.question {
    font-weight: bold;
}

p.answer {
    padding-left: 50px;
}

img.title-image {
    border: 1px #ccc solid;
}

.image-container {
    overflow: hidden;
}

    .image-container img {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    .image-container:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
