/* Add this to your styles.css file */
  
.container {
  width: 70%;
  margin: auto;
  text-align: center;
}
  
/* ...existing code... */

.menu-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
}

.menu-bar {
  height: 6px;
  width: 100%;
  background: #4ECCA3;
  border-radius: 3px;
  transition: 0.3s;
}

.menu-box {
  display: none;
  position: absolute;
  top: 70px;
  right: 30px;
  background: #232931;
  border-radius: 10px;
  box-shadow: 0 2px 10px #23293180;
  padding: 20px 30px;
  z-index: 999;
}
.menu-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-box li {
  margin: 15px 0;
}
.menu-box a {
  color: #4ECCA3;
  text-decoration: none;
  font-family: 'Lobster', cursive;
  font-size: 1.5rem;
  transition: color 0.2s;
}
.menu-box a:hover {
  color: #ccaf4e;
}
.menu-box.show {
  display: block;
}
/* Add these styles for different color states */
.menu-btn.color1 .menu-bar { background: #4ECCA3; }
.menu-btn.color2 .menu-bar { background: #ccaf4e; }
.menu-btn.color3 .menu-bar { background: #704ecc; }
.menu-btn.color4 .menu-bar { background: #e94e77; }
/* Add these styles for the dice */
.dice {
  text-align: center;
  display: inline-block;
  margin: 50;

}


body {
  background-color: #393E46;
}
#refreshBtn {
  margin: 30px auto;
  display: block;
  padding: 20px 60px;
  font-size: 2rem;
  font-family: 'Lobster', cursive;
  color: #4ECCA3;
  background-color: #232931;
  border: none;
  border-radius: 15px;
  box-shadow: 2px 2px 10px #232931;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

#refreshBtn:hover {
  background-color: #4ea8cc;
  color: #232931;
}
h1 {
  margin: 30px;
  font-family: 'Lobster', cursive;
  text-shadow: 5px 0 #232931;
  font-size: 8rem;
  color: #ccaf4e;
}
h3 {
  margin: 20px;
  font-family: 'Lobster', cursive;
  text-shadow: 5px 0 #232931;
  font-size: 5rem;
  color: #704ecc;
}

p {
  font-size: 1.5rem;
  color: #4ecca2;
  font-family: 'Indie Flower', cursive;
}

img {
  width: 60%;
}

footer {
  margin-top: 5%;
  color: #EEEEEE;
  text-align: center;
  font-family: 'Indie Flower', cursive;

}
.container h2 {
  color: #4ECCA3;
  font-size: 2rem;
}
