h1
{
    border-radius:25px;
    font-size:30px;
    background: red; /* Old browsers */
    background: -moz-linear-gradient(top,  #fafcca 0%, #f2f765 24%, #d7de04 50%, #eff541 79%, #f4f87c 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fafcca), color-stop(24%,#f2f765), 
            color-stop(50%,#d7de04), color-stop(79%,#eff541), color-stop(100%,#f4f87c)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #fafcca 0%,#f2f765 24%,#d7de04 50%,#eff541 79%,#f4f87c 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #fafcca 0%,#f2f765 24%,#d7de04 50%,#eff541 79%,#f4f87c 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #fafcca 0%,#f2f765 24%,#d7de04 50%,#eff541 79%,#f4f87c 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #fafcca 0%,#f2f765 24%,#d7de04 50%,#eff541 79%,#f4f87c 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafcca', endColorstr='#f4f87c',GradientType=0 ); /* IE6-9 */
}
            
#left
{    
    color:#ffffff;
    height:620px;
    width:28%;
    float:left;
    background: #000000; 
}
            
#right
{
    background-color:white;
    float:right;
    border-radius:25px;
}
            
#mid
{
    height:620px;
    margin-left:350px;
    margin-right:350px;
}
            
#bot
{
    height:131px;
    width:400px;
    background-color:red;
    margin-top:20px;
    border-radius:25px;
}

.red:hover
{
    color:red;
}

#fairusage
{
    text-decoration:none;
    color:#000000;
    font-size:30px;
    position:relative;
    top:45px;
}

#fairusage:hover
{
    color:#ffffff;
}

#pizza
{
    position:absolute;
    top:300px;
    left:10px;
    -webkit-animation-name: rotate;     
    -webkit-animation-duration: 15s;    
    -webkit-animation-iteration-count: infinite;    
    -webkit-animation-timing-function: linear;    
    -moz-animation-name: rotate;     
    -moz-animation-duration: 15s;     
    -moz-animation-iteration-count: infinite;    
    -moz-animation-timing-function: linear;
}
            
@-webkit-keyframes rotate 
{    
    from {-webkit-transform: rotate(0deg);}    
    to {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes rotate 
{    
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(360deg);}
} 
@-ms-keyframes rotate 
{    
    from {-ms-transform: rotate(0deg);}    
    to {-ms-transform: rotate(360deg);}
}           