html, body {
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;

}

.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/index.png');
  background-size: cover;
  background-position: center;
}


.container {
  position: relative;
  width: 100%;
  height: 100vh;
}

#start-btn {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 100px;
  border: 2px solid black;
  border-radius: 50px;
  background-color: white;
  color: black;
  font-size: 40px;
}

#start-btn:hover {
  background-color: grey;
  opacity:80%;
  color: white;
  cursor: pointer;
}