/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
 background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: white;
  border: none;
  padding: 14px 28px;
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: #008000;
}

/*Hover button */
.button {
  border-radius: 4px;
  background-image: url(/gifs/background2.gif);
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
/*Font*/
body {
    font-family: 'Audiowide';font-size: 22px;
}
