* {
    margin: 0;
}
body {
    /*    background-image: url('../img/back.jpg');*/
    background-attachment: fixed;
    background-color: #ff4a41;
}

.header {
    width: 100%;
    height: 100%;
    background-color: #FF4A41;
}

.header img {
    height: 400px;
    left: 50%;
    margin-left: -200px;
    margin-top: -200px;
    position: absolute;
    top: 50%;
    width: 400px;
}

.header .shadow {
    background: radial-gradient(ellipse at center center , rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%) repeat scroll 0 0 rgba(0, 0, 0, 0);
    content: "";
    height: 10px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transition-duration: 0.3s;
    transition-property: transform, opacity;
    width: 300px;
    margin-top: 250px;
    margin-left: -150px;
    animation-name: shadowopacity;
    -moz-animation-name: shadowopacity;
    -webkit-animation-name: shadowopacity;

    animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;

    animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.container {
    background-image: url('../img/overlay.png');
}

.first {
    background-color: #322424;
}

.second {
    background-color: #E2C47B;
}

.floating{
    animation-name: floating;
    -moz-animation-name: floating;
    -webkit-animation-name: floating;

    animation-duration: 1.5s;	
    -moz-animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;

    animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(5%);
    }
    100% {
        transform: translateY(0%);
    }
}

@-moz-keyframes floating {
    0% {
        -moz-transform: translateY(0%);
    }
    50% {
        -moz-transform: translateY(5%);
    }
    100% {
        -moz-transform: translateY(0%);
    }			
}

@-webkit-keyframes floating {
    0% {
        -webkit-transform: translateY(0%);
    }
    50% {
        -webkit-transform: translateY(5%);
    }
    100% {
        -webkit-transform: translateY(0%);
    }			
}

@keyframes shadowopacity {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

@-webkit-keyframes shadowopacity {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }			
}

@-moz-keyframes shadowopacity {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }			
}

@-webkit-keyframes shadowopacity {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }			
}