@import url('https://fonts.googleapis.com/css?family=Varela Round');

button {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 200;
    height: 100;
    font-size: 70px;
    margin-top: -50px;
    margin-left: -100px;
    border-radius: 30px;
    border-width: 4px;
    background-color: dimgray;
    border-color: black;
    font-family: 'Varela Round';
    color: white;
}

.description {
  position: absolute;
  font-family: 'Varela Round';
  font-size: 30px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.title {
  position: fixed;
  top: 20%;
  left: 50%;
  font-family: 'Varela Round';
  color: white;
  font-size: 100px;
  transform: translate(-50%, -50%);
}

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  font-family: 'Varela Round';
  color: white;
  font-size: 100px;
  transform: translate(-50%, -50%);
  
}

.object {
  color: white;
  background-color: rgb(100, 20, 230);
  border-color: rgb(100, 20, 255);
}
  
  @keyframes MoveUpDown {
    0%, 100% {
      bottom: 45%;
    }
    50% {
      bottom: 55%;
    }
  }

.ad-zone{
    height: 10px;
}

/*<link href='https://fonts.googleapis.com/css?family=Varela Round' rel='stylesheet'>*/
body {
    background-color: black;
}

.bg-image {
  /* The image used */
  background-image: url("./background.gif");

  /* Add the blur effect */
  filter: blur(8px);
  -webkit-filter: blur(8px);

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

button:hover {
  background-color: rgb(100, 20, 255);
  border-color: rgb(100, 20, 255);
}