p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: large;
    margin-bottom: 12px;
}

i {
    font-size: x-large;
}

a {
    text-decoration: none;
  }

.container {
  display: flex;
  align-items: center;
  justify-content: center;
}

@font-face {
    font-family: Libre Baskerville;
    src: url(LibreBaskerville-Regular.ttf);
}

@keyframes backgroundAnimate {
    0% {
      background-color: rgba(238, 130, 238, 0.1);
    }
    14% {
      background-color: rgba(76, 0, 130, 0.1);
    }
    28% {
      background-color: rgba(0, 0, 255, 0.1);
    }
    42% {
      background-color: rgba(0, 128, 0, 0.1);
    }
    56% {
      background-color: rgba(255, 255, 0, 0.1);
    }
    70% {
      background-color: rgba(255, 166, 0, 0.1);
    }
    84% {
      background-color: rgba(255, 0, 0, 0.1);
    }
    100% {
      background-color: rgba(238, 130, 238, 0.1);
    }
  }
  
  .button {
    -webkit-text-stroke: 1px #000000;
    color: #ff0000;
    background: linear-gradient(70deg, #bdc3c791 0%, #6285a793 50%, #b9bdc1a7 100%);
    border: 3px solid #780e0e;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    font-size: 2.5em;
    padding: .5em .5em;
    position: relative;
  }
  
  .button:hover {
    animation: backgroundAnimate 3s linear infinite;
  }
  
  .button-text {
    display: inline;
    background: none;
    -webkit-background-clip: unset;
    font-family: Libre Baskerville;
    background-clip: unset;
    padding: 0.1em 0.3em;
    border-radius: 5px;
  }