body {
  background-color: black; /* Set the background of the body to black */
}
#Acceptbutton {
  background-color: white;
  padding: 10px 20px; /* reduced button size */
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  border-radius: 50%;
  border: 5px solid black;
  text-align: center;
  display: inline-block;
  float: left; /* align to left */
}
#Denybutton {
  background-color: white;
  padding: 10px 20px; /* reduced button size */
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  border-radius: 50%;
  border: 5px solid black;
  text-align: center;
  display: inline-block;
  float: left; /* align to left */
}
#Acceptbutton:hover {
  background-color: black;
  color: white; /* Change the color to white when hovered over */
  cursor: pointer;
  display: inline-block;
}
#Denybutton:hover {
  background-color: black;
  color: white; /* Change the color to white when hovered over */
  cursor: pointer;
  display: inline-block;
}
.cookies {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#title {
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
}

