a,
a:visited,
a:hover,
a:active,
a:focus {
  font-size: 0.8rem;
  color: #000;
  text-decoration: none;
}

::selection {
  background: #bef200;
}

body {
  margin: 0;
  padding: 0;
  background-image: url("wall.png");
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body.subsite {
  height: auto;
  padding: 0 2rem;
  margin: 5% auto;
  max-width: 720px;
  background-color: #ffffff;
  background-image: none;
  text-align: center;
}

.source {
  font-size: 0.85rem;
  color: #666;
}

#dialog {
  position: fixed;
  display: none;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1000;

  a,
  a:visited,
  a:hover,
  a:active,
  a:focus {
    font-size: 1rem;
    color: #8b0027;
    font-weight: bold;
  }
}

#dialog.visible {
  display: block;
  opacity: 0.8;
}
#socialstuff {
  position: fixed;
  background-color: #76af4f;
  height: auto;
  width: 100%;
  bottom: 0;
  padding: 25px 0;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.legal {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  margin-top: 10px;
}
