/*
    Document   : style
    Created on : June 25, 2021
    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, footer {
    margin: 0;
    padding: 0;
    border: none;
}

body {
	background-color: #202020;
	font-family: 'Roboto Slab', serif;
  min-height: 100%;
}

#cover {
  width: 80%;
  margin: 40px auto;
  transition: all 2s ease;
}

img {
  display: block;
  width: 150px;
  margin: 0 auto;
  transition: all 2s ease;
}

#cover:hover > img {
  transform: rotateY(360deg);
  width: 350px;
}

#cover:hover {
  width: 100%;
}

a {
	text-decoration: none;
	font-size: 100px;
	-moz-transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

#info {
  position: absolute;
  width: 100%;
  opacity: 0%;
  padding: 80px 0;
	transition: all 1s ease;
}

#cover:hover > #info {
  opacity: 100%
}

#side1 {
  color: #1d6e90;
  position: absolute;
  left: 40px;
}

#side1:hover {
	color: white;
}

#side2 {
  color: #f0703c;
  position: absolute;
  right: 40px;
}

#side2:hover {
	color: white;
}

footer {
	text-align: center;
	width: 100%;
  position: absolute;
  bottom: 10px;
}



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

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

body {
	padding: 0 20px;
}

#info {
  opacity: 100%;
  padding-top: 30px;
  position: relative;
}

img {
  transform: rotateY(360deg);
  animation-name: intro;
  width: 80%;
}

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

a {
	font-size: 60px;
}

footer {
  position: relative;
}

}
