/*
    Document   : style
    Created on : Feb. 20, 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;
	padding: 0 100px;
}

h1 {
	font-size: 80px;
  text-align: center;
  color: #70466f;
  margin: 40px 0px;
	animation-name: intro;
    animation-duration: 2s;
    animation-delay: 0;
    animation-iteration-count: 1;
}

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

img {
  display: block;
  margin: auto;
  width: 70%;
}

h2 {
	color: #efefef;
	font-family: 'Roboto', sans-serif;
	font-size: 30px;
}

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;
}

#sides {
  width: 80%;
  margin: 20px auto;
}

#side1 {
  color: #8dc63f;
}

#side1:hover {
	color: white;
}

#side2 {
  color: #b43709;
  float: right;
}

#side2:hover {
	color: white;
}

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



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

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

body {
	padding: 0 20px;
}

h1 {
	font-size: 60px;
}

a {
	font-size: 60px;
}


}
