@import url('https://fonts.cdnfonts.com/css/open-sauce-one');

body, html {
  height: 100%;
  margin: 0;
}

.bgimg {
  background-image: url('images/BackgroundImg.png');
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  /* color: white; */
  font-family: "Open Sauce One";
  font-size: 25px;
}

.topleft {
  position: absolute;
  top: 0;
  left: 16px;
  text-align: center;
}

.bottomleft {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
}

.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

hr {
  margin: auto;
  width: 40%;
}

.button {
  display: inline-block;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #83a0c8;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

.button:active {
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.rotate {
  animation: rotation 4s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
