#container {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
backdrop-filter: brightness(20%) blur(8px);
/*background-image: url("./images/main-bg.png");*/
}

#tloGradient {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: linear-gradient(145deg, #0d0d0dd0, #1a1a1ad2);
}

#box {
max-width: 750px;
margin: 0;
background: #161616;
border-radius: 15px;
border: 3px solid #444;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
background-size: 100% 100%;
}

#box2 {
padding: 20px;
border-radius: 12px;
background-color: rgba(40, 40, 40, 0.8);
backdrop-filter: brightness(25%);
}

h1,
h2 {
  color: #76c7c0;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

p {
  color: #b0b0b0;
  text-align: center;
  font-size: 13px;
}

body {
  font-family: 'Verdana', sans-serif;
  margin: 0;
  padding: 0;
  color: #f5f5f5;
  background-image: url("dark-pattern.jpg");
  background-size: cover;
}

#shadowBox {
  color: #f5f5f5;

}

.rainbow {
  text-align: center;
  text-decoration: underline;
  font-size: 32px;
  font-family: monospace;
  letter-spacing: 5px;

}
.rainbow_text_animated {
  background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow_animation 6s ease-in-out infinite;
  background-size: 400% 100%;
}

@keyframes rainbow_animation {
  0%,100% {
    background-position: 0 0;
  }

  50% {
    background-position: 100% 0;
  }
}

.button {
  background: linear-gradient(145deg, #0d6efd, #0a58ca); 
  border: 2px solid #0a58ca;
  color: #ffffff;
  padding: 40px 80px;
  text-align: center;
  font-size: 16px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s, filter 0.3s;
  cursor: pointer;
  margin: 10px;
  font-weight: bold; 
}

.button:active {
  transform: scale(0.98); 
  filter: brightness(90%); 
}

.button:hover {
  background: linear-gradient(145deg, #0a58ca, #004080); 
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.6);
}

.nigger {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap; 
}

.link {
  position: relative;
  display: flex;                
  justify-content: center;      
  align-items: center;          

  width: 220px;                
  height: 360px;                

  color: #76c7c0;
  text-decoration: none;
  border-radius: 32px;
  transition: 0.3s ease;
  font-weight: bold;
  font-size: 16px;
  overflow: hidden;
  z-index: 1;
}

.link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  z-index: -1;
  transition: 0.3s ease;
  border-radius: 32px;
}

.link1::before {
  background-image: url('/images/kloce.png');
}
.link2::before {
  background-image: url('/images/dj.gif');
}
.link3::before {
  background-image: url('/images/kromchan.gif');
}

.link:hover::before {
  filter: grayscale(0%);
}
.link:hover {
  color: #1f1f1f;
  box-shadow: 0 4px 10px rgba(118, 199, 192, 0.3);
  transform: translateY(-2px);
}


.easteregg {
  text-decoration: none;
  color: inherit;
}