* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  background-color: #f0f0f0;
  font-family: Arial, Helvetica, sans-serif;
  color: #FF0000;
  display: flex;
  justify-content: center;
  align-items: center;
}


.imagen-derecha {
  position: absolute;
  top: 40px;     
 left: 60px;   
  width: 90px;  
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card {
  width: 600px;
  height: 300px;
  position: relative;
  background: #fff;
  border: 2px solid #ccc;
  overflow: hidden;
}

.dino {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 60px;
  bottom: 10px;
  transition: bottom 0.2s ease;
}

.kaktus {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 10px;
  right: 0;
}

.score {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 18px;
  color: black;
}

.buttons {
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 18px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button#restart-button {
  background-color: #dc3545;
}
