body {
    background-image: url("IMG_5242.jpg");
    background-size: cover;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    font-size: 55px;
    font-family:fantasy,cursive,serif;

    color:white;
}
p {
    text-align: center;
    font-size: 20px;
    font-family:fantasy,cursive,serif;
    color:white;
}
label {
    color:white;
}
@keyframes spin {
  0% { transform: rotate(0deg) scale(0.28125)}
  25% { transform: rotate(90deg) scale(0.5625)}
  50% { transform: rotate(180deg) scale(1.125)}
  75% {transform: rotate(270deg) scale(2.5)}
  100% { transform: rotate(360deg) scale(0.28125)}
}

.spin {
  animation: spin 1s ease-in-out;
}