/*
    Document   : style
    Created on : Oct 15, 2017
    Author     : William Griswell
    Description:
        General stylings
    Fonts Available:
        font-family: 'Roboto', sans-serif;
            Thin, Light, Regular, Medium, Bold, Black.
            Italic in all sizes.
        font-family: 'Roboto Slab', serif;
            Thin, Light, Regular, Bold.
*/

body, a, div, p, h1, h2, header, footer, img {
    margin: 0;
    padding: 0;
    border: none;
}

body {
	background-color: #202020;
	color: #505050;
	font-family: 'Roboto Slab', serif;
}

header {
    width: 100%;
    text-align: center;
    padding: 100px 0;
}

h1 {
	font-size: 150px;
	margin-bottom: 20px;
	animation-name: intro;
    animation-duration: 3s;
    animation-delay: 0;
    animation-iteration-count: 1;
}

h2 {
	color: #efefef;
	font-size: 40px;
}

h3 {
  margin-bottom: 200px;
  font-size: 20px;
  color: white;
	font-family: 'Roboto', sans-serif;
}

@keyframes intro {
	0% {
        opacity: 0;
    }
    30% {
    	opacity: 0;
    }
    100% {
    	opacity: 1;
    }
}

a {
	text-decoration: none;
  text-align: center;
  font-weight: bold;
  background-color: #ffffff;
  width: 49%;
	font-size: 20px;
  color: #ffffff;
  display: inline-block;
  z-index: 1;
  margin-top: 100px;
  margin-bottom: 20px;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:hover {
  background-color: #505050;
}

img {
  display: block;
  width: 70%;
  margin: -40px auto;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
  z-index: 0;
}

#container {
    width: 90%;
    margin: 0 auto;
}

.tape {
  background-color: #ffffff;
  width: 28%;
  margin: 40px 2%;
  display:inline-block;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.tape:hover {
	background-color: #202020;
}

.tape:hover > img {
    transform: rotate(20deg);
    z-index: 0;
}

.tape:hover > a {
  color: #202020;
}

footer {
	padding: 100px 0 10px 0;
	text-align: center;
	width: 100%;
}

p {
  color: white;
  size: 20px;
}

#soon {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  display: block;
  font-size: 70px;
}


/******************************************************************************************
smaller View
******************************************************************************************/

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

body {
	padding: 0 20px;
}

h1 {
	font-size: 100px;
}

a   {
	font-size: 30px;
  color: #202020;
}


}

/******************************************************************************************
Mobile View
******************************************************************************************/

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


h1 {
	font-size: 40px;
  margin: 100px auto;
}

.tape {
  width: 90%;
  display: block;
  margin: 80px auto;
  padding: 20px 0;
  background-color: #fffff;
}

img {
  margin: 20px auto;
}

a   {
	font-size: 40px;
  color: #202020;
  width: 100%;
  height: 80px;
  margin: 20px 0;
}

}
