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

body {
  font-family: 'Arial', sans-serif; 
  background-image: url('https://cdn.glitch.global/acf1fe96-84ac-4d61-96e6-f7e9d078f94b/jungle.jpg?v=1700123572310'); 
  background-size: cover; 
  background-repeat: no-repeat;
  color: #3d3d3d;
}

header {
  background-color: #ff8c00; 
  color: #ffffff;
  padding: 15px;
  text-align: center;
}

h1 {
  font-size: 24px;
}

main {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px;
}

.pet-image-container {
  flex: 1;
  padding: 20px;
  position: relative; /*  relative positioning for absolute positioning inside */
}

.pet-image {
  width: 70%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: none;
}

.gif-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.dashboard {
  flex: 1;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.dashboard div {
  margin-bottom: 10px;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
}

.button-container button {
  width: 100px;
  margin: 5px;
  text-align: center;
  font-size: 15px;
  border: none;
  color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Button colors: Yellow, Orange, Green, Purple */
.treat-button {
  background-color: #fdd835; /* Yellow */
}

.play-button {
  background-color: #ff8c00; /* Dark orange */
}

.exercise-button {
  background-color: #4caf50; /* Green */
}

.custom-button {
  background-color: #673ab7; /* Purple */
}

.rest-button {
  background-color: #2196f3; /* Blue for "Rest Time" */
}

.button-container button:hover {
  opacity: 0.8;
}

.notification {
  margin-top: 10px;
  padding: 10px;
  background-color: #ff8c00; /* Dark orange */
  color: #ffffff;
  border-radius: 5px;
  display: none;
}

/*  styling for the hunger element */
.dashboard .hunger {
  color: #ffcc00; /*  color for hunger */
}
