@font-face {
  font-family: "Sligoil";
  src: url("Sligoil-Micro.otf") format("opentype");
}

html,
body {
  background-color: rgb(225, 255, 0);
}

body {
  min-height: 100vh;
  margin: 0;
}

#DisclaimerContainer {
    text-align: center;
    width: min(500px);
  min-width: 280px;
  background-color: rgb(225, 255, 0);
  font-family: "Sligoil", sans-serif;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#Disclaimerlogo {
  position: fixed;
  left: 50%;
  bottom: 5dvh;
  transform: translateX(-50%);
  width: auto;
  height: auto;
}

#Disclaimerlogo a {
  display: inline-block;
  border-radius: 999px;
}

#Disclaimerlogo img {
  display: block;
  height: 5vh;
  width: auto;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

#Disclaimerlogo a:hover img,
#Disclaimerlogo a:focus-visible img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 0.35rem rgba(0, 0, 0, 0.35));
  opacity: 0.9;
}

#Disclaimerlogo a:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
}