/* GLOBAL */
body {
  font-family: 'Gotham', sans-serif;
  margin: 0px;
  letter-spacing: 1px;
  background: white;
}

.container {
  width: 100vw;
  height: 100vh;
  background: black;
  display: flex;
  flex-direction: row;

}

.game-container {
  width: 70%;
  background-image: url("../assets/img/background.jpg");
  background-size: cover;
  overflow: clip;
}

.dashboard {
  width: 30%;
  background-image: url("../assets/img/dashboard.png");
  background-size: cover;
}


.image {
  width: 100%;
  max-width: 300px;
  margin: auto;
  display: block;
}

.instructions {
  width: 80%;
  display: block;
  margin: auto;
}

.score {
  text-align: center;
  color: red;
}

.start-button {
  display: block;
  margin: auto;
  margin-top: 45vh;
  width: fit-content;
  background: red;
  color: white;
  padding: 20px;
  border-radius: 20px;
  cursor: pointer;
}

.drop-object {
  top: 100vh;
  left: 0;
  width: 20%;
  position: fixed;
}