/*
 *   Copyright (c) 2025 
 *   All rights reserved.
 */

#secret {
  background-color: #0f0f0f25;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 9999;
  border-radius: 50%;
}

#psst {
  position: absolute;
  top: 3px;
  right: 3px;
  rotate: 330deg;
  font-size: 24px;
  opacity: 0;
  white-space: nowrap;
  color: antiquewhite;
}

@keyframes psstAnimation {
  0% { opacity: 0; transform: translate(0, 0); }
  10% { opacity: 0.5; }
  50% { opacity: 0.5; transform: translate(-40px, 8px); }
  55% { opacity: 0; }
  90% { opacity: 0; }
  100% { opacity: 0; }
}

.show-animation {
  animation: psstAnimation 3s ease-in-out;
}

.container {
  display: flex;
  color: antiquewhite;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0f0f0fd2;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 5%;
  margin-bottom: 5%;
  height: 100vh;
}

p {
  font-size: 20px;
  text-align: center;
}

a {
  width: 25%;
  text-align: center;
  margin: 15px;
  padding: 10px;
  background-image: linear-gradient(to right, #b62ccb, #240956);
  border-radius: 5px;
  color: antiquewhite;
  font-size: 20px;
  text-decoration: none;
}

footer {
  color: antiquewhite;
}