
body {

	background: #000000



}

img.sp {

    position: absolute;
    top: 250px;
    left: 385px;
    width: 500px;
    height: 200px;

}

img.sp:empty {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (orientation: portrait) {
  img.sp {
      max-width: 90%;
  }
}

@media screen and (orientation: landscape) {
  img.sp {
      max-height: 90%;

}

footer {
   position:absolute;
   bottom:0;
   width:98%;
   height:60px;   /* Height of the footer */
   background:#000;
   text-align: center;
}

a {
    color: white;
    text-align: center;
    text-decoration: none;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;

}

.button1 {
    position: absolute;
    background-color: #4CAF50;
    border: none;
    font-size: 20px;
    color: #FFFFFF;
    padding: 5px;
    width: 150px;
    top: 50%;
    left: 550px;
    text-align: center;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

.button1:after {
    content: "";
    background: #90EE90;
    display: block;
    position: absolute;
    padding-top: 300%;
    padding-left: 350%;
    margin-left: -20px!important;
    margin-top: -120%;
    opacity: 0;
    transition: all 0.8s
}

.button1:active:after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s
}





