/*
    Final Project: Website
    Author: Ryan Soper
    Date: 30 AUG 2015
    
    css for body of pages

*/

body h1 {
   text-align: center;
}

body h2 {
    text-align: center;
}

body p {
    text-align: center;
}

iframe {
    clear: left;
    float: left;
    margin-left: 24%;
}

/*CSS3 Tossing animation */
.spin {
    display: block;
    float: left;
    width: 200px;
    height: 200px;
    margin: 0px; 
    margin-top: 20px;
    margin-left: 39%;
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg);}}
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg);}}
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg);}}





