@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

#btnn {
  font-family: "Roboto", serif;
  cursor: pointer;
  background-color: #fc8585;
  border: none;
  color: rgb(248, 244, 244);
  padding: 15px 20px;
  margin: 3px 6px 3px 6px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 10px;
  transition: all 0.1s ease;
  transform: scale(1);
}
#btnn:hover {
  transform: scale(1.1);
  border-radius: 5px;
}
#btnn:active {
  transform: scale(0.9);
  border-radius: 12px;
}

.btnn {
  font-family: "Roboto", serif;
  cursor: pointer;
  background-color: #fc8585;
  border: none;
  color: rgb(248, 244, 244);
  padding: 15px 20px;
  margin: 3px 6px 3px 6px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 10px;
  transition: all 0.1s ease;
  transform: scale(1);
}
.btnn:hover {
  transform: scale(1.1);
  border-radius: 5px;
}
.btnn:active {
  transform: scale(0.9);
  border-radius: 12px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.pulse {
  animation: pulse 0.5s infinite alternate; /* Change '1s' to adjust the speed of the pulse */
}
