/*
	Author: Jason Wyant
*/

body
{
	background-color: rgb(50,50,50);
  color: rgb(200,200,200);
  font-family: cursive;
  text-align:center;
  padding-right: 10%;
  padding-left: 10%;
}

h2
{
    color:forestgreen;  
		text-align: right
}

.Main
{
    color: rgb(148,0,211);    
    animation: colorWheel 20s infinite;
    text-align: center;
    font-size: 50px;
    font-family: monospace;
}
li
{
	list-style-type: none;
}

a
{
    color: orange;
    font-size: 20px;
    
}

#pictures
{
    width: 100%;
    text-align: center;
}

#left
{
    text-align: left;
    width: 30%;
}

#center
{
    text-align: center;
    width: 30%;
}

#right
{
    text-align: right;
    width: 30%;
}

#work
{
    height: 200px;
}

@keyframes colorWheel
{
    from, to { color: rgb(148,0,211); }
    10%      { color: rgb(75,0,130); }
    20%      { color: rgb(0,0,255); }
    30%      { color: rgb(0,255,0); }
    40%      { color: rgb(255,255,0); }
    50%      { color: rgb(255,127,0); }
    60%      { color: rgb(255,64,0); }
    70%      { color: rgb(255,0,0); }
    80%      { color: rgb(243,65,116); }
    90%      { color: rgb(238,130,238); }
}