div#disclaimerFrame {
  position: Fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 15vh;
  z-index: 1000;
  cursor: Default;
  background-color: rgba(152, 248, 202, 0.97);
  border: Solid 2px rgb(0, 191, 0);
  color: rgb(0, 0, 191);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction:column
}

div#gdprDisclaimer,
div.buttons {
  padding-top: 10px;
  text-align: Center;
}

div.buttons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 50%;
}

.gdprButton {
  border: solid 1px #000;
  border-radius: 5px;
  width: 150px;
  color: #fff;
  padding: 7px;
}

div#readGDPR {
  background-color: rgb(100, 100, 191);
  color: rgb(255, 255, 255);
}

div#readGDPR:hover {
  background-color: rgb(0, 0, 166);
  color: rgb(255,255, 255);
}
div#leave {
  background-color: rgb(191, 100, 100);
  color: rgb(255, 255, 255);
}

div#leave:hover {
  background-color: rgb(166, 0, 0);
  color: rgb(255,255, 255);
}

div#accept {
  background-color: rgb(100, 191, 100);
  color: rgb(255, 255, 255);
}

div#accept:hover {
  background-color: rgb(0, 166, 0);
  color: rgb(255,255, 255);
}

a {
  text-decoration: none;
}