body {
  text-align:center;
  background-color:black;
  font-family: Verdana;
  color: yellow;
  font-weight: bold;
}

.imagerapper {
display: flex;
flex-direction: row;
justify-content:space-between;
}

.treasurechest {
    background-image:url("../CHEST.png");
    height:fit-content;
    width:fit-content;
}
.treasurechest:hover {
    background-image: none;
}
.treasurechest img {
	opacity: 0;	
}
.treasurechest:hover img {
	opacity: 1;
}


.cloud {
    background: url("CLOUD.png") center no-repeat;
    width: 100%;
    padding: 25px;
    text-shadow: 1px 0px black,0px 1px black,0px 1px black, 0px -1px black, 0px 2px black, 0px -2px black,0px 0px 1px black,0px 0px 2px black, 0px 0px 5px black, 0px 0px 5px black, 0px 0px 5px black, 0px 0px 5px black;
    font-size: 120%;
}


.dreamcatcher {
    background-image:url("../DREAMS.png");
    height:fit-content;
    width:fit-content;
}
.dreamcatcher:hover {
    background-image: none;
}
.dreamcatcher img {
	opacity: 0;	
}
.dreamcatcher:hover img {
	opacity: 1;
}

.container {
  position: relative;
  text-align: center;
  color: black;

}

.centered {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: yellow;
  text-shadow: 0px 1px black, 0px -1px black, 0px 2px black, 0px 0px 2px black, 0px 0px 3px black,0px 0px 3px black,0px 0px 3px black, 0px 3px black;
  font-size: 110%;
}

.img_container {
    width: 100%;
    top:110%;
    text-align: center;
}

.email {
    position: absolute;
    top: 72%;
    right: 35.5%;
    color: transparent;
    background-image: linear-gradient(black, orange);
    background-clip: text;
    text-shadow: 0px 1px , 0px -1px black, 0px 0px 3px black, 0px 2px black, 0px 3px black;
}

#float1 {
animation-name: floaty1;
animation-duration: 3.5s;
animation-iteration-count: infinite;
position: relative;
}

@keyframes floaty1 {

0% {
top: -10px;
}

50% {
top: 10px;
}

100% {
top: -10px;
}

}

#float2 {
animation-name: floaty2;
animation-duration: 3.5s;
animation-iteration-count: infinite;
position: relative;
}

@keyframes floaty2 {

0% {
top: 10px;
}

50% {
top: -10px;
}

100% {
top: 10px;
}

}
