*{
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}

/* MENU */

ul.menu {
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #404040;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
}
li.menu {
    display: inline;
}
li.menu a.menu {
    color: #f2f2f2;
    display: inline-block;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
}
li.menu a.menu:hover {
    background-color: #666;
}
#menu{
    display: none;
}
    @media screen and (max-width: 800px) {
        li.menu a.menu {
            display: list-item;
        }
        #menu {
            display: list-item;
        }
    }

/* SIGN IN */

.header {
    background-color: gray;
    height: 30px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* MAIN CONTENT */

.container{
    width: 100%;
    max-width: 1200px;
        margin: 100px auto 0 auto;
        padding: 0 20px;
}
.col-4{
    background-color: #666;
    color: white;
	margin: 4px;
	min-height: 410px;
	max-width: 100%;
}
.col-4:hover {
    transition: 1s;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.img {
	height: auto;
	max-height: 500px;
	width: 100%;
}
.link {
	height: auto;
	width: 100%;
}
    @media screen and (max-width: 800px) {
        .col-4 {
            width:100%;
            height: auto;
        }
        .img {
        	width: 100%;
        	height: auto;
        }
        .imgContainer {
        	padding-left: 0%;
        }
    }
.book {
	height: auto;
	width: 100%;
}
a:hover{
	text-decoration: none;
}

/* FOOTER */

ul.footer {
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #404040;
    bottom: 0;
    width: 100%;
}

li.footer {
    color: #f2f2f2;
    display: inline;
    padding: 15px;
}

li.footer a.footer {
    color: #f2f2f2;
    display: inline-block;
    padding: 15px;
    text-decoration: none;
}

@media screen and (max-width: 800px) {
    li.footer a.footer {
        display: list-item;
    }
}

/* RESPONSIVE */

* {
    box-sizing: border-box;
}

.row:after {
    content: "";
    clear: both;
    display: block;
}

[class*="col-"] {
    float: left;
    padding: 10px;
}


@media only screen and (min-width: 800px) {
    /* Desktop */
    .col-0 {width: 5.55%;}
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 32%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}
