@charset "utf-8";

body{
    background-color: #fc9003;
    margin-top: 100px;
}

section{
    width: 800px;
    margin: 0 auto;
    padding: 75px;
    background-color: white;
    border: 5px solid black;
}

h2{
   font-family: "Source Sans 3", sans-serif;
    font-size: 1.75em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/*TRANSITIONS*/

h2.ts{
    color: #fc9003;
    padding-bottom: 15px;
    transition: all 1s ease-in-out;
}

h2.ts:hover{
    letter-spacing: 1em;
    color:#382103;
}

#box1{
    width: 75px;
    height: 75px;
    background-color: #df5153;
    transition: all 2s ease-out;
}

#box1:hover{
    width: 800px;
    background-color: #FFDE29;
}

#box2{
    width: 75px;
    height: 75px;
    background-color: #999;
    border: 15px solid black;
    margin-top: 75px;
    margin-right: 150px;
    float: left;
    transition: all 2s linear;
} 

#box2:active{
    background-color: black;
    border-color: #999;
}

#box3{
    width: 250px;
    height: 250px;
    margin-top: 75px;
    background-image: url(../images/ghost1.jpg);
    float: left;
    transition: 2s ease-in;
}

#box3:hover{
    background-image: url(../images/ghost2.jpg);
    transform: rotateY(180deg);
}

#box4{
    width: 75px;
    height: 75px;
    background-color: #00ff0d;
    margin: 75px 0 0 150px;
    opacity: 1;
    float: left;
    transition: all 1s ease-out;
}

#box4:active{
    height: 200px;
    background-color: #c300ff;
}

/*TRANSFORM*/

#transform{
    margin-top: 75px;
}

h2.tf{
    color: #fc9003;
    padding-bottom: 50px;
    display: inline-block;
    transition: all 1s linear;
}

h2.tf:hover{
    color: #382103;
    transform: rotate(360deg);
}

#box5 img{
    width: 25px;
    height: 25px;
    transition: all 1.5s ease-out;
}

#box5 img:hover{
    transform: scale(24);
    transform-origin: left bottom;
}

#box6{
    width: 75px;
    height: 75px;
    margin-top: 75px;
    background-color: #FFDE29;
    border: 3px dashed blue;
    transition: all 2s ease-in-out;
}

#box6:active{
    background-color: blue;
    border: 3px dashed #FFEA00;
    transform: translateX(700px);
}

#box7{
    width: 40px;
    height: 40px;
    background-color: black;
    float: right;
    margin-top: 20px;
    transition: all 1.5s linear;
}

#box7:active{
    background-color: deeppink;
    transform: translateX(-725px) rotate(360deg);
    border-radius: 50px;
}











