/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("BackgroundHOME.png");
  background-position: left top; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: auto;
  max-height:1440px;
  max-width:810px;
  color: black;
  font-family: arial;
}

.topPage {
  height:1440px;
  width:810px;
}

.leheader {
  position: absolute;
  top:0px;
  left:0px;
  width:1440px;
  height:810px;
  z-index: 2;
}

.letitle {
  position: absolute;
  top:108px;
  left:0px;
  width:361px;
  height:577px;
  z-index: 10;
}

.letitle:hover .name {
  opacity: 0;
}
.letitle:hover .elijah {
  opacity: 1;
}

.elijah {
  position: absolute;
  opacity: 0;
  width:361px;
  height:577px;
  z-index: 10;
}

.name {
  position: absolute;
  opacity: 1;
  width:361px;
  height:577px;
  z-index: 10;
}

.music {
  position: absolute;
  top:30px;
  left:260px;
  width:241px;
  height:382px;
  z-index: 4;
}

.btn {
  position: absolute;
  height:55px;
  width:55px;
  top: 287px;
  left: 381px;
  background-color: #555;
  color: white;
  font-size: 1px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  text-align: center;
  z-index: 5;
}

.player {
  position: absolute;
  top: 50px;
  left: 270px;
  z-index:9;
  transform: rotate(-17deg);
}

.world{
  position: absolute;
  top:-65px;
  left:327px;
  width:288px;
  height:288px;
  z-index: 3;
  -webkit-animation: spin1 2s infinite linear;
  -moz-animation: spin1 2s infinite linear;
  -o-animation: spin1 2s infinite linear;
  -ms-animation: spin1 2s infinite linear;
  animation: spin1 2s infinite linear;
  display: block;
  }
  @-webkit-keyframes spin1 {
  0% { -webkit-transform: rotate(0deg);}
  100% { -webkit-transform: rotate(360deg);}
  }
  @-moz-keyframes spin1 {
  0% { -moz-transform: rotate(0deg);}
  100% { -moz-transform: rotate(360deg);}
  }
  @-o-keyframes spin1 {
  0% { -o-transform: rotate(0deg);}
  100% { -o-transform: rotate(360deg);}
  }
  @-ms-keyframes spin1 {
  0% { -ms-transform: rotate(0deg);}
  100% { -ms-transform: rotate(360deg);}
  }
  @-keyframes spin1 {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
} 

.inhoud {
  position: absolute;
  top:30px;
  left:260px;
  width:100%;
  height:auto;
  z-index: 1;
}
