body {
  margin-top: 20px;
  text-align: center;
  font-family: 'Ubuntu', sans-serif;
  background: linear-gradient(to bottom, #eccfde, #ffdcfa);
  color: white;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black; /* Thin black border */
}

#hamburger {
  font-size: 24px;
  background: #ff98d4;
  color: white;
  border: 2px solid black;
  border-radius: 25px;
  cursor: pointer;
  padding: 5px;
  padding-right: 20px; 
  padding-left: 20px; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 85px;
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  border-radius: 10px;
  z-index: 10;
}

#menu.hidden {
  display: none;
}


#backbb {
  margin: 0;
  padding: 0px;
  display: flex;
  justify-content: left;
  padding-left: 50px;
}

#players {
  margin-left: 3px;
  
}
#scoreboard {
  margin-left: 3px;
  
}

h1 {
  color: rgb(235, 194, 253);
  font-size: 40px;
}

.buttonsSelect {
  display: flex;
  gap: 100px; /* Adjust the gap to control the space between buttons */
  justify-content: center;
  margin-top: 20px; /* Add margin to separate from the headings */
  align-items: center; /* Center items horizontally */
  margin-bottom: 30px;
}

ul {
  list-style-type: none;
}


button {
  font-family: 'Ubuntu', sans-serif;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 20px 5px 15px;
  font-size: 16px;
  border: 2px solid #f9ceff;
  background-color: #ff98d4; /* Green background color */
  color: rgb(0, 0, 0); /* Text color */
  border-radius: 30px; /* Adjust the border-radius for a round shape */
  cursor: pointer;
  transition: ease background-color 0.3s; /* Add a smooth transition effect */
  text-shadow: -1px -1px 0 rgb(255, 255, 255), 1px -1px 0 rgb(255, 255, 255), -1px 1px 0 rgb(255, 255, 255), 1px 1px 0 rgb(255, 255, 255); /* Thin black border */
  }

.button2 {
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 20px; /* Adjusted padding for consistent appearance */
    font-size: 16px;
    border: 2px solid #f9ceff;
    background-color: #ff98d4; /* Background color */
    color: rgb(0, 0, 0); /* Text color */
    border-radius: 30px; /* Round shape */
    cursor: pointer;
    transition: ease background-color 0.3s; /* Smooth transition effect */
    width: 150px; /* Fixed width */
    height: 40px; /* Fixed height */
    display: inline-block; /* Ensures proper alignment with text */
    line-height: 1; /* Ensures consistent text alignment */
  }

button:hover {
  background-color: #f7c7ec; /* Darker green color on hover */
  transform: scale(0.9);
}

img {
  display: block; /* Remove default inline image spacing */
  margin: 10px auto; /* Center the image horizontally with margin */
}

.petals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1; /* Place it behind other content */
  background: url('petal.png') repeat;
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vh);
  }
}

#pairings-list {
  font-size: 30px;
  color: rgb(235, 194, 253);
}

.boxer {
  display: inline-block;
  width: 300px;
  height: 280px;
  border-radius: 15px;
  background: linear-gradient(135deg, #ffb8e3, #9d9bd8);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 6px 6px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid black;
}

.box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2), 0 10px 10px rgba(0, 0, 0, 0.15);
}
