/*
Mark Guan
Section ZZ
3/28/2018
This is the css style sheet for the about me page.
*/

body {
	background: no-repeat center center fixed;
	background-image: url("https://s-media-cache-ak0.pinimg.com/originals/7f/44/c7/7f44c78dbfc7c75c91db5ede032acc5c.jpg");
	background-size: cover;
    color: white;
    font-family: sans-serif;
}

img {
    height: 400px;
    width: 400px;
    padding: 50px;
}

.small{
    height: 300px;
    width: 300px;
    padding: 50px;
}

#title {
    font-size: 4em;
    padding: 1px;
    position: relative;
    top: 5px;
}

.header, h1, p, div{
    text-align: center;
}

#title:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background-color: white;
  content: "";
  transition: all 0.2s;
}

#title:hover {
  color: white;
}

#title:hover:after {
  width: 100%;
}

section {
  opacity: 0.5;
}

section:hover {
  opacity: 1;
  transition: opacity 1.5s ease;
}

h1 {
    font-size: 2em
}

p {
    font-size: 1.3em;
}

