/*
    Document   : style
    Created on : July 18, 2023
    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;
}

h2 {
  color: #202020;
  background-color: #efefef;
  text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: 30px;
  padding-left: 20px;
}

h3 {
  font-size: 80px;
  text-align: center;
  color: #202020;
  background-color: #efefef;
  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: 100%;
}

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

#buff {
  width: 70%;
  height: 100px;
  background-color: #efefef;
  margin: 20px auto;
}

#buff2 {
  width: 40%;
  height: 70px;
  background-color: #efefef;
  margin: 20px auto;
}

#buff3 {
  width: 10%;
  height: 40px;
  background-color: #efefef;
  margin: 20px auto;
}

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

.side1 {
  color: #ff2c2c;
}

.side1:hover {
	color: white;
}

.side2 {
  color: #74c365;
  float: right;
}

.side2:hover {
	color: white;
}

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



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

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

body {
	padding: 0 20px;
}

h1 {
	font-size: 60px;
}

h3 {
	font-size: 60px;
}

a {
	font-size: 60px;
}


}
