#title{
	
	width:750px;
	margin: auto;
	
	top: 0; 
	left: 0; 
	bottom: 0; 
	right: 0;
	text-align : center;
}
#bsa{
	border: 1px solid;
	border-color: #5918C9;
	box-shadow: 0 0 60px #ccc;
	width:750px;
	height:420px;	
	margin: auto;
	
	top: 0; 
	left: 0; 
	bottom: 0; 
	right: 0;
	
	text-align : center;
	position: relative;
}
.ct { 
  position: absolute; 
  left: 250px; 
  top: 100px; 
  width: 135px; 
  height: 84px; 
  display: table; 
}

.ct p {
  display: table-cell; 
  vertical-align: middle; 
  text-align: center; 
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4.0em;
}
#stpat{
	border: 1px solid;
	border-color: #00b500;
	box-shadow: 0 0 60px #ccc;
	width:750px;
	height:420px;	
	margin: auto;
	
	top: 0; 
	left: 0; 
	bottom: 0; 
	right: 0;
	background: url("shamrock.png") no-repeat center;
}

#content{
	border: 1px solid;
	border-color: #0f04de;
	box-shadow: 0 0 60px #ccc;
	width:750px;
	height:420px;	
	margin: auto;
	
	top: 0; 
	left: 0; 
	bottom: 0; 
	right: 0;
	background: url("8thmarch.png") no-repeat center;
}
div#butterfly{
    position absolute;
    left:0px;
    top:0px;
    width: 366px;
    height: 208px;
    
    -webkit-transform: rotate(-20deg)  translate(10px, 15px) scale(0.8, 0.8);
    -webkit-transform-origin: center center;
    transform: rotate(-20deg)  translate(10px, 15px) scale(0.8, 0.8);
    transform-origin: center center;
}


div#rightwing{
    position: absolute;
    left:0px;
    top:0px;
    width: 98px;
    height: 185px;
    background-image: url("swallow.png");
    background-repeat:no-repeat;
    
    -webkit-transform: rotate3d(0, 0, 0, 180deg); /* Mirror left wing */
    -webkit-transform-origin: center right;
    -webkit-animation-name: rightwingani;
    -webkit-animation-duration: 8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    
    transform: rotate3d(0, 0, 0, 180deg); /* Mirror left wing */
    transform-origin: center right;
    animation-name: rightwingani;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes rightwingani {
    from {
        -webkit-transform: rotate3d(0, 1, 0, 180deg);
    }
    30% {
        -webkit-transform: rotate3d(0, 1, 0, 180deg);
    }
    50% {
        -webkit-transform: rotate3d(0, 1, 0, 100deg);
    }
    70%{
        -webkit-transform: rotate3d(0, 1, 0, 180deg);
    }
    to{
        -webkit-transform: rotate3d(0, 1, 0, 180deg);
    }
}

@keyframes rightwingani {
    from {
        transform: rotate3d(0, 1, 0, 180deg);
    }
    30% {
        transform: rotate3d(0, 1, 0, 180deg);
    }
    50% {
        transform: rotate3d(0, 1, 0, 100deg);
    }
    70%{
        transform: rotate3d(0, 1, 0, 180deg);
    }
    to{
        transform: rotate3d(0, 1, 0, 180deg);
    }
}

div#leftwing{
    position: absolute;
    left:0px;
    top:0px;
    width: 98px;
    height: 185px;
    background-image: url("swallow.png");
    background-repeat: no-repeat;
    
    -webkit-transform-origin: top right;
    -webkit-animation-name: leftwingani;
    -webkit-animation-duration: 8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    
    transform-origin: top right;
    animation-name: leftwingani;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes leftwingani {
    from {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
    }
    30%  {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
    }
    50% {
        -webkit-transform: rotate3d(0, 1, 0, 80deg);
    }
    70%{
        -webkit-transform: rotate3d(0, 1, 0, 00deg);
    }
    to{
        -webkit-transform: rotate3d(0, 1, 0, 00deg);
    }
}


@keyframes leftwingani {
    from {
        transform: rotate3d(0, 1, 0, 0deg);
    }
    30%  {
        transform: rotate3d(0, 1, 0, 0deg);
    }
    50% {
        transform: rotate3d(0, 1, 0, 80deg);
    }
    70%{
        transform: rotate3d(0, 1, 0, 00deg);
    }
    to{
        transform: rotate3d(0, 1, 0, 00deg);
    }
}