body, html {
  margin:0;
  padding:0;
  height:100%;
}

body {
  font-family: "Comic Sans MS", cursive, sans-serif;
  background-image: repeating-linear-gradient(
    145deg,
    #fde4e4,
    #fde4e4 20px,
    #e4fdf0 20px,
    #e4fdf0 40px,
    #e4ecfd 40px,
    #e4ecfd 60px
  );
  color: #222;
  text-shadow: 1px 1px #f0f, -1px -1px #0ff;
  cursor: wait;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}


.ads {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 1rem;
  padding: 1rem 10px;
  pointer-events: none;
  z-index: 999;
}

.ads.left {
  left: 0;
}

.ads.right {
  right: 0;
}

.ads img, img.ad {
    border: 2px dashed red;
  box-shadow: 0 0 10px #f00a;
  pointer-events: auto;
}

.ads img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
