@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap');
@keyframes getdingy {
  from {background-color: rgba(255, 255, 255, 0.5);;}
  to {background-color: rgba(240, 234, 187, 0.7);}
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 20px;
  /* background-color: white; */
  background-color: rgb(49, 49, 49);
}

/* .container {
  display: flex;
  height: 100svh;
  justify-content: center;
  align-items: center;
} */

.container {
  display: grid;
  height: 100svh;
  grid-template-columns: 0px minmax(300px, auto) 0px;
  padding: 1em;
}

/* .container > div {
  background-color: white;
} */

.splash-image {
  width: 100%;
  background-image: url(images/dadsbriefs-sq80.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Major Mono Display', monospace;
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* .splash-image {
  width: 900px;
  height: 600px;
  background-image: url(images/dadsbriefs80.webp);
  background-size: cover;
  font-family: courier;
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
} */
.splash-text-ln1 {
  position: absolute;
  padding: 4px 10px;
  background-color: rgba(255, 255, 255, 0.5);
  /* background-color: rgba(240, 228, 137, 0.7); */
  /* opacity: .7; */
  transform: rotate(-10deg) translateY(-0.6em);
  z-index: 1;
  animation-name: getdingy;
  animation-delay: 4s;
  animation-duration: 12s;
  animation-fill-mode: forwards;
}
.splash-text-ln2 {
  position: absolute;
  padding: 4px 10px;
  background-color: rgba(255, 255, 255, 0.5);
  /* opacity: .7; */
  transform: rotate(-10deg) translateY(0.6em);
  animation-name: getdingy;
  animation-delay: 4s;
  animation-duration: 12s;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 733px) {
  /* .container {
    grid-template-columns: 1em minmax(300px, auto) 1em;
  } */
  .splash-image {
    font-size: 1.5em;
  }
}