* {
  box-sizing: border-box;
}


body	{
	font-family: 'Roboto', sans-serif;
	font-size: calc(16em + (26 - 14) * ((100vw - 300px) / (1600 - 300)))
	padding: 0;
  background-color: #fff;
}


ul	{
	font-family: 'Roboto', sans-serif;
	line-height: 1.5;
	font-size: 0.85em;
	color: #000;

}


img {
	width: 100%;
}

.image2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}

main {
  margin: 30px auto;
  padding: 0 20px;
  width: 100%;
  display: grid;

/*  - - - - AUTO ROW SIZING - - - -   */
  grid-auto-rows: auto;

/*  - - - - BREAKPOINTS - - - -   */
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

  grid-gap: 1em;
}

article	{
	margin-bottom: 1em;
	}

figure	{
	padding: 0;
	margin: 0;
	}



/*  - - - - HOVER TEXT OVER IMAGE EFFECT - - - -   */


.container {
	padding: 0;
	margin: 0;
  position: relative;
  width: 50%;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.container:hover .image {
  opacity: 0.5;
}

.container:hover .middle {
  opacity: 1;
}

.text {
  color: #fff;
  font-size: 16px;
  padding: 16px 32px;
}


/*  - - - - TYPOGRAPHY - - - -   */

h1,
h2,
h3,
h4,
h5,
h6,
h7,
h8	{
	font-family: 'Roboto', sans-serif;
	}

h1 	{
	font-size: 1.9em;
	line-height: 1;
	color: #000;
  text-align: left;
  padding-left: 25px;
  text-decoration: none;
	}

h2 	{
	font-size: 1.75em;
	line-height: 1.25;
	}

h3 	{
	font-size: 1.5em;
	line-height: 0;
	color: #8d8d8d;
	}

h4 	{
  font-family: 'Roboto', sans-serif;
  font-size: 1.75em;
	line-height: 1.25em;
	color: #bfbfbf;
  padding-left: 9px;
	}

h5 	{
	font-size: 1.0em;
	line-height: 1.5;
  background: -webkit-linear-gradient(#ff33ee, #ffaa79);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  padding-left: 9px;
  padding-right: 25px;
	}

h6 	{
	font-size: 1.0em;
	line-height: 1.5;
  background: -webkit-linear-gradient(#ff33ee, #ffaa79);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  padding-left: 15px;
	}

h7 	{
	font-size: 1.0em;
	line-height: 1.5;
	color: #aeaeae;
  padding-left: 25px;
  padding-right: 25px;
	}

h8 	{
	font-size: 0.9em;
	line-height: 0.5;
	color: #888;
	padding-left: 9px;
	}

p	{
	font-family: 'Roboto', sans-serif;
	line-height: 1.5;
	color: #737373;
  text-align: left;
  padding-left: 9px;
	}

a {
  text-decoration: none;
}

        a:link {
            color: #343434;
            text-decoration: none;
        }
  
        /* If the link is visited you see this color*/
        a:visited {
            color: #343434;
        }
  
        /* On placing mouse over the link */
        a:hover {
            color: #343434;
        }
  
        /* If the click the link,  you see this color*/
        a:active {
            color: #343434;


serif	{
	font-family: 'Inria Serif', serif;
	line-height: 1.25;
	color: #343434;
	}

.footertext	{
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	color: #6d6d6d;
	line-height: 1.5;
	}


header,
footer	{
	text-align: left;
	}


footer	{
  	padding-left: 25px;	
	}

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

main {
  	padding: 0;
	margin: 0;
	}

}
