@import url('https://fonts.googleapis.com/css2?family=Jersey+25&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+25&family=Micro+5&display=swap');

body {
    background-color: black;
    color: white;
    margin: 0;
}

.topbar {
    z-index:1;                                overflow: hidden;
    font-family: "Micro 5", sans-serif;
    font-size: 20px;                          color: white;
    right: 0%;                                width: 100%;
    top: 0%;                                  background-color: rgb(0, 0, 0, 0.7);
  }
  
  
  .logotop {
    z-index:1;                                overflow: hidden;
    position:fixed;
  }
  
  
  .scroll {
    font-family: pixel;                       font-size: 20px;
    color: white;                             background-color: black;
    margin: 5px 5px 5px 5px;                  top: 70%;
    left: 50%;                                transform: translate(-50%, -50%);
    border: 1px solid white;
  }

  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('./img/hero.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.explain {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 40px 20px;
    box-sizing: border-box;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}


.ender {
    border-top: 1px solid white;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    box-sizing: border-box;
}


.ender::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./img/kag.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.ender h2 {
    color: white;
    font-family: "Micro 5", sans-serif;
    font-weight: 100;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px #8a2be2, 0 0 15px #8a2be2;
    animation: pulse-purple 2s ease-in-out infinite;
}

.countdown {
    opacity: 1 !important;
    z-index: 1;
    font-family: "Micro 5", sans-serif;
}

.centered-left {
    align-items: center;
}

.explain h2 {
    color: white;
    font-family: "Jersey 25", sans-serif;
    font-size: 72px;
    margin-bottom: 20px;
    text-align: left;
    text-shadow: 0 0 10px #8a2be2, 0 0 15px #8a2be2;
    animation: pulse-purple 2s ease-in-out infinite;
}

.greenish {
    text-shadow: 0 0 10px greenyellow, 0 0 15px darkgreen !important;
    animation: pulse-green 1.5s ease-in-out infinite !important;
}

.reddish {
    text-shadow: 0 0 10px red, 0 0 15px darkred !important;
    animation: pulse-red 3s ease-in-out infinite !important;
}

@keyframes pulse-purple {
    0%, 100% { text-shadow: 0 0 10px #8a2be2, 0 0 15px #8a2be2; }
    50% { text-shadow: 0 0 20px #8a2be2, 0 0 30px #8a2be2, 0 0 40px #8a2be2; }
}

@keyframes pulse-green {
    0%, 100% { text-shadow: 0 0 10px greenyellow, 0 0 15px darkgreen; }
    50% { text-shadow: 0 0 25px greenyellow, 0 0 35px darkgreen, 0 0 45px green; }
}

@keyframes pulse-red {
    0%, 100% { text-shadow: 0 0 10px red, 0 0 15px darkred; }
    50% { text-shadow: 0 0 20px red, 0 0 30px darkred, 0 0 40px crimson; }
}

.explain p {
    color: #cccccc;
    font-family: "Jersey 25", sans-serif;
    font-size: 24px;
    line-height: 1.3;
    max-width: 1200px;
    text-align: left;
    margin: 0;
}

.compendium p {
    color: #cccccc;
    font-family: "Micro 5", sans-serif;
    font-size: 24px;
    padding: 20px;
    line-height: 1.3;
    max-width: 1200px;
    text-align: left;
    margin: 0;
}

h1 {
    font-family: "Micro 5", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 140px;
    text-shadow: 0 0 15px #8a2be2, 0 0 25px #8a2be2, 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}



h3 {
    font-family: "Jersey 25", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 100px;
    text-shadow: 0 0 15px #8a2be2, 0 0 25px #8a2be2, 2px 2px 4px rgba(0, 0, 0, 0.5);
}