@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&display=swap');

body {
    height:90vh; /* This is the height of the monitor */
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background-color:skyblue;
}

h1 {
  font-family: "Bungee Shade", sans-serif;
}

button {
  border:round;
  box-shadow: 0px 0px 20px royalblue;
  cursor:pointer;
  transition: all ease 1s;
  background-color:royalblue;
}
