body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  flex-direction: column;
}

.warning-container {
  border: 2px solid var(--red);
  padding: 20px;
  max-width: 700px;
  background: var(--black);
  color: var(--red);
  text-align: center;
  font-family: 'Lucida Console', monospace;
  box-shadow: 0 0 10px #ff000055;
}

.warning-container h1 {
  font-size: 1.5em;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.warning-container p {
  margin: 10px 0;
  line-height: 1.4;
}

.gary-centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gary-img {
  width: 250px;
  height: auto;
}