
body {
  background-color: #ffeab7; 
  background-image: url("https://dl.dropbox.com/s/rr5se47u373c2yn/orange%20lace.png");
  background-repeat: repeat;      
  background-position: top left;      
  background-attachment: fixed;
  background-size: cover;   
  background-size: 500px auto; 
}

html {
overflow: scroll;
overflow-x: hidden;
}

/* starting page*/

.cocosclubgif {
  width: 1000px;
  height: auto;
  display: block;
  margin: 0 20px 20px 0px;
  position: relative;
  top: 60px;
  z-index: 1;
  animation: floaty 3s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* adjust how high it moves */
  }
  
  
}
.presstostart {
  font-family: "Pixelify Sans", sans-serif;
  font-size: 25px;
  color: brown;
  text-decoration: none;
  display: inline-flex;        /* flex container */
  align-items: center;         /* vertical centering */
  gap: 10px;                   /* space between text and icon */
  transition: transform 0.3s, background-color 0.3s;
  z-index: 10;
  position: relative;
  top: -60px;
  cursor: none;   
}

.presstostart:hover {
  background-color: transparent;
  transform: scale(1.1);
}

.presstostart span.text {
  display: inline; 
}

.presstostart.loading span.text {
  display: none;
}

.presstostart.loading::after {
  content: "LOADING...";
  opacity: 1;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}
  
.hovericon {
  width: 20px;
  height: 20px;
  opacity: 0;                  
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  margin: 0;                   /* remove any margins */
  vertical-align: initial;     /* reset vertical-align */
}

.presstostart:hover .hovericon {
  opacity: 1;
  transform: translateX(0);
}

.loading {
  pointer-events: none; 
  transform: none;
}

.loading::after {
  content: " LOADING...";
  opacity: 1; 
  animation: none; 
}

@keyframes blink {
  50% { opacity: 0; }
}