body {
    background-image: url(https://64.media.tumblr.com/11572328aece2e09870b05a302bb85a6/42cb08fb0519d2ed-4d/s400x600/73063d17e5aecf088827b1c7a80a9627b213347a.gif);
  }

  .container {
    display: flex;
    flex-direction: column;
  }

  header {
    font-family: "Coral Pixels";
    background: none;
    color: black;
    font-size: 24px;
    text-align: center;
  }

  footer { 
    overflow: hidden;
    background-color: white;
    text-align: center;
    font-family: "Coral Pixels";
  }

  main {
    font-family: "Coral Pixels";
    background: white;
    border: 2px solid black;
    border-style: inset;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    height: 100%;
  }

  .movable {
    position: absolute;
    z-index: 10;
    display: none;
  }

  .mobile-movable {
    position: absolute;
    display: flex;
    z-index: 10;
  }

  .desktop-only{
    display: none;
  }

  boxworld {
    position: relative;
    border-image: url("https://media.tenor.com/UZswyok8T-oAAAAM/pride-rainbow.gif") 30 / 3px;
    border-radius: 500px;
    padding: 3px;
    font-size: 17px;
  }

  talkbox {
    display: block;
    position: relative;
    border-image: url("https://media.tenor.com/UZswyok8T-oAAAAM/pride-rainbow.gif") 30 / 3px;
    text-align: center;
    padding: 5px;
  }

  aside.left, aside.right {
    display: none;
  }

  #betaDisclaimer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: "Coral Pixels";
  }
  
  .disclaimer-content {
    background: #fff;
    color: #000;
    border: 4px ridge #666;
    padding: 20px 30px;
    max-width: 400px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 0 10px #333;
  }
  
  #dismissDisclaimer {
    margin-top: 15px;
    background: silver;
    border: 3px outset #888;
    padding: 5px 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
  }
  
  #dismissDisclaimer:active {
    border: 3px inset #888;
  }
  
  