body {
	background-image: url("https://zicroniumpantz.neocities.org/sparkle-rainbow.gif");
	font-family: "Lucida Console", "Courier New", "monospace";
}


.topnav {
  overflow: hidden;
  background-color: #6d53a3;
    margin: 15;
    padding: 15;

    display: flex;
    justify-content: center;
}

.topnav a {
  color: #f2f2f2;
  text-align: center;
  padding: 14px 40px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #6d46b6;
  color: white;
}



/* bouncing animation (floating)  */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}



.container {
  animation: bounce 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}




