@keyframes myAnimation {
  0%   {background-color: red;};
  15%  {background-color: yellow;}
  50%  {background-color: darkblue;}
  75% {background-color: darkcyan;}
  50%  {background-color: blue;}
  75% {background-color: green;}
  100% {background-color: red;};
}

body {
  width: auto;
  height: auto;
  background-color: red;
  animation-name: myAnimation;
  animation-duration: 0.3s;
  animation-iteration-count: infinite;
}




@keyframes fadeInBackground {
  from { opacity: 0; }
  to { opacity: 1; }
}




@keyframes fadeIn {
    from {
        opacity: 0;
    } 
    to {
        opacity: 1;
    }   
}


.fade-in-text {
  animation: fadeIn 2s ease-in forwards;
}




h1 {
    text-align:center;
    animation-name: fadeIn;
    animation-duration: 1s;

}


#ste {
  padding: 50px;
  transition: transform .2s;
  margin : 0 auto;
}
#ste:hover {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 
}

.hide {

  display: none;

}

.ste:hover + .hide {
  display: block;
  color: black;
  animation-name: fadeIn;
}



.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* Dark background to reduce initial eye strain */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Highest priority */
    text-align: center;
    padding: 20px;
}

.modal-content {
    background-color: #222;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #ff0800; /* Warning color */
    max-width: 500px;
}

#accept-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #15ff00;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
}


.wobble {
  text-align: center;
  font-size: 3.5rem;
  font-display:auto
}

@keyframes wobb {
  0%, 100%   {transform: translateY(0px)}
  25%  {transform: translateY(-3px)}
  75%  {transform: translateY(3px)}
}

.wobble span {
  animation-name: wobb;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 400ms;
  display: inline-block;
  transform: translateY(0px);
}

.spacer {
  height: 50px;
}

.boringmessage {
  font-size: 2.5rem;
  text-align: center;
  font-display:auto
}
