@charset "utf-8";
/* CSS Document */

html { 
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}

a{
	color:#37a9b3;
}

a:hover{
	color:#f20d9a;
}

body, figure {
	margin: 0;
}

body{
	background-color:#faf5e3;
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;;
	font-size: 10px;
	margin:0px;
	padding:0px;
}

* {
	font-size: 1rem;
}
.container{
	display: grid;
	padding: 3rem;
}

h2{
	letter-spacing: .5rem;
}

header{
	color:#333333;
}

header h1{
	font-size: 3rem;
	font-weight: 300;
	letter-spacing: -0.1rem;
	margin:0 0 0 0;
	padding:1rem 0 0 0;
}

header img{
}

.headerLogo{
	vertical-align: middle;	
}

nav{
}

nav li{
	display: inline-block;
	list-style: none;
}

nav li a{
	color: #37a9b3;

}

nav li a:hover{
	color: #63c6cf;
}

nav ul{
	margin-left: 0;
	padding-left: 0;
}

footer{
	background-color: #f545b1;
}

section{
}

aside{
	float: left;
}

header, footer{
	padding: .5rem 2rem;
}

#social ul{
	padding: 0;
}

#social ul li{	
	display: inline-block;
	list-style: none;
}

.bold{
	font-weight: 900;
}

.skinny{
	font-weight: 300;
}

.ft-logo{
	width:3rem;
	height:3rem; 
}

.hide {
	display: none;
}

.gallery{
	display: grid;
  	grid-template-columns: repeat(2, 1fr);
  	grid-column-gap: 10px;
}

.galleryItem li{
	list-style-image: none;
	list-style: none;
}

.galleryItem img{
	width: 100%;
}

#blackBlock{
	padding: 1rem 0 1rem 1rem;
	background-color: #333333;
	color: #faf5e3;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.gallery{
	display: grid;
  	grid-template-columns: repeat(3, 1fr);
  	grid-column-gap: 10px;
}

}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.gallery{
	display: grid;
  	grid-template-columns: repeat(4, 1fr);
  	grid-column-gap: 10px;
}
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
.gallery{
	display: grid;
  	grid-template-columns: repeat(6, 1fr);
  	grid-column-gap: 10px;
}
}