#notif{
    font-family: 'Calligraffitti', cursive;
    text-align: center;
    align-items: center;
    vertical-align: middle;
    position: fixed;
    z-index: 99;
    width: auto; height: auto;
}

#notif #one{
    
    position: relative;
    text-align: left;
    align-items: center;
    vertical-align: middle;
    color: whitesmoke;
    font-size: 96px;
    text-shadow: 2px 2px 12px #1b529e;
    z-index: 101;
}

.fade-in-out{
    font-family: 'Sedgwick Ave', cursive;
    position: absolute;
    text-align: center;
    align-items: center;
    vertical-align: top;
    top: 0px;
    left: 0px;
    width: auto;
    height: auto;
    bottom: 0px;
    right: 0px;
    color: whitesmoke;
    font-size: 36px;
    text-shadow: 2px 2px 12px #3162a8;
    z-index: 101;
}

#ambience{
    position: absolute;
    background-color: black;
    opacity: 1;
    top: 0px;
    left: 0px;
    width: auto; height: auto;
    bottom: 0px;
    right: 0px;
    z-index: 11111;
    
}

#notification{
    position: absolute;
    top: -64px;
    width: 360px;
    border-radius: 20px;
    height: 40px;
    background-color: black;
    color: whitesmoke;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 1s;
    z-index: 10000;
}
  
.ending-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: linear-gradient(to bottom right, #2654b8, #1bb7ff, #f892ff);
  }
  
  .gg-text {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .gg-text h1 {
    font-size: 10rem;
    margin: 0;
  }
  
  .gg-text p {
    font-size: 3rem;
    margin: 0;
    margin-top: -2rem;
    letter-spacing: 0.1em;
  }

  @keyframes fade-in {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  