body {
    font-family: 'Poppins', sans-serif;
    background-color: lightgrey;
 }

 #title {
    background-color: grey;
    font-size: 50px;
    border-radius: 10px;
 }

 #list {
    color: #fff;
    font-size: 20px;
    padding: 20px;
 }

 #intro {
    color: #fff;
    font-size: 30px;
 }

 #everything {
    background-image: url(black-bg.png);
    width: 900px;
 }

 #memory {
    position: fixed;
    left: 65%;
    top: 1%;
 }

 .btn-primary {
    background: #fb2727;
    color: #f11414
  }

  .btn {
    position: fixed;
    top: 75%;
    left: 26%;
    display: inline-block;
    padding: 26px 40px;
    background:#f30606;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    border-color: grey;
    cursor: pointer;
    text-align: center;
    transition: 0.5s;
    font-size: 20px;
  }

  @keyframes bounce {
   0%, 100% {
       transform: translateY(0); /* Start and end at the original position */
   }
   50% {
       transform: translateY(-68px); /* Move up by 20px */
   }
}

.bounce {
   display: inline-block; /* Ensure the element is treated as inline-block */
   animation: bounce 1s infinite; /* Apply the bounce animation */
   font-size: 2em; /* Optional: Adjust font size */
   color: rgb(255, 120, 142); /* Optional: Match the existing style */
}

.secret {
   color: rgb(214, 102, 121);
   font-size: 2em;
   position: fixed;
   top:90%;
   left: 80%;
}