@import url("https://fonts.googleapis.com/css2?family=Quintessential&family=Stack+Sans+Notch:wght@200..700&display=swap");

body {
  background: #ca74ca;
  width: 70%;
  margin: 0 auto;
}

h1 {
  font-size: 4rem;
  text-align: center;
  display: flex;
  justify-content: center;
  font-family: "Quintessential", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  background: #ffa6fb;
  padding: 20px;
  border: solid 10px black;
}

a {
  text-decoration: none;
  text-align: center;
  color: black;
  background: #76438f;
  padding: 10px;
  border: 2px solid black;
  font-family: "Stack Sans Notch", sans-serif;
  justify-content: center;
  display: flex;
  transition:1s background;
}

a:hover {
  background: #dd94ff;
  transition:1s background;
}
#glow{
  transition: 3s box-shadow;
  text-align: center;
}
#glow:hover{
  box-shadow: 0px 0px 60px rgb(255, 255, 255);
  background-color: #fbffbd;
  transition: 3s box-shadow;
}
#glow a:hover{
  background-color: #f3ff51;
}
