body {
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

h1,
p {
  margin: 10px;
}

/* Buttons (unstyled at first) */
button {
  border-radius: 0;
  cursor: pointer;
}

/* Styled look */
.styled {
  font-family: Arial, sans-serif;
  text-align: center;
  transition: all 0.5s ease;
}

.styled h1 {
  color: white;
  background: teal;
  padding: 15px 25px;
  border-radius: 4px;
  font-size: 50px;
}

.styled p {
  color: white;
  background: rgb(238, 29, 210);
  padding: 15px 25px;
  border-radius: 4px;
}

.styled button {
  background: rgb(121, 9, 226);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s;
  margin: 5px;
  padding: 10px 15px;
  box-shadow: 0px 0px 5px 0px rgb(20, 183, 224), 0px 0px 10px 0px rgb(20, 224, 156);
}

.styled button:hover {
  background: darkcyan;
  transform: scale(1.05);
}

/* JS animation */
.animate p {
  animation: bounce 1s infinite alternate;
  color: rgb(255, 255, 255) !important;
  font-size: 1.3em;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-15px);
  }
}

/* Particles container */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* background: linear-gradient(135deg, rgb(15, 1, 77), rgb(95, 1, 104)); */
}
