@font-face {
  font-family: "ETBembo";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  src: url("../fonts/ETBembo-SemiBoldOSF.woff") format("woff"),
    url("../fonts/ETBembo-SemiBoldOSF.woff2") format("woff2");
}

body {
  font-family: "ETBembo", "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 23px;
  height: 100%;
}

a {
  color: blue;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
  cursor: pointer;
  pointer-events: initial;
}

a:visited {
  color: maroon;
}

.content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  gap: 13px;
  pointer-events: none;
}

::selection {
  background: lemonchiffon;
}

.badge {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
  transform: rotate(+4deg);
  opacity: 0.8;
  cursor: pointer;
}



@media screen and (max-width: 500px) {
  .badge {
    display: none;
  }
}