/*EBLAN NE LEZ, IT WILL KILL YOU*/
body {
    font-family: Arial, sans-serif;
    color: aliceblue;
    min-height: 100vh;
    background: linear-gradient(rgb(31, 32, 58), rgba(0, 0, 0, 0.89)) 0% 0% / cover;
    background-size: cover;
    animation: fade_in .6s;
    overflow: hidden;
    transform: scale(1.2);
}

body.video-page{
  overflow: auto;
}

.container {            
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    margin: 0;
}

.header {
    display: flex;
    justify-content: center;
    animation: micande 3s infinite ;
    z-index: 10;
    align-items: center;
    padding: 150px 0;
}

.info-block {
    justify-content: center;  
    font-family: Arial, sans-serif;
    background-color: #000000c2;
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto 30px auto;
    text-align: center;
    position: relative;
    z-index: 5; 
    opacity: 0.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.349);
}  

.wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15 px;
}

.btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.close-btn {
  animation: btnAnimation .5s ;
  background: #FF5D5B;
  border: 4px solid #FF5D5B;
  
}

.min-btn {
  animation: btnAnimation .5s ;
  background: #FFBB39;
  border: 4px solid #FFBB39;
}

.max-btn {
  animation: btnAnimation .7s ;
  background: #00CD4E;
  border: 4px solid #00CD4E;
}

.link-social{
  color:rgba(255, 255, 255, 0.76); ;
}

.link {
    color: rgba(255, 255, 255, 0.76);
}

.link:hover {
  animation: glow 0.4s forwards;
}

.slash0 {
  animation: slash_animation 3s infinite;
}

.slash1 {
  animation: slash_animation 4s infinite;
}

.slash2 {
  animation: slash_animation 5s infinite;
}

.slash3 {
  animation: slash_animation 6s infinite;
}

.falling {
  animation: btnfall 2s ;
}

.box {
  border: 2px solid rgba(255, 255, 255, 0.11);; 
  padding: 10 px;          
  border-radius: 5px;
  font-size: 15px;
}
/*animation ww*/
@keyframes backgroundark {
    0%, 100% {background: rgba(0, 0, 0, 0.6);}
    50% {background: rgba(223, 214, 214, 0.4);}
}

@keyframes fade_in {
    0% {
        opacity: 0;
        filter: blur(3px)
    }

    to {
        opacity: 1;
        filter: blur(0)
      }
}

@keyframes slash_animation {
  0%, 100% {color: #ffffff60;}
  50% {color: #ffffff;}
}

@keyframes btnAnimation {
  0% {height: 0px; width: 0;};
}

@keyframes btnfall {
  0% {
    transform: translate(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes glow {
  0%{
    text-shadow: none ;
  }
  100%{
    text-shadow: 0 0 5px rgba(240, 248, 255, 0.575) ;
  }
}