html, body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  background: black;
  color: white;
  font-family: "Press Start 2P", serif;;
  font-size: 20px;
  text-align: left;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  cursor: url("../art/retro-cursor.png") 16 16, auto;
}

main {
  padding-top: 20px;
  padding-left: 20px;
  display: flex;
  gap: 20px;
  flex: 1;
  line-height: 1.5;
}

main > * {
  flex: 1;
}


@media (max-width: 768px) {
  main{
    flex-direction: column;
    padding: 20px;
  }

  main > * {
    flex: none;
  }

  footer {
    flex-wrap: wrap;
    padding: 15px;
  }

  #CheckUsOut {
    width: 100%;
  }

  footer p {
    width: 100%;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    hyphens: auto;
  }

  /* Ensure links can break if needed */
  footer a {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 30px;
}


header img {
  max-width: 50%;
  min-width: 350px;
  height: auto;
  margin: 0 auto;
  padding: 0px;
}


footer {
    display: flex;
    padding: 20px;
    margin-top: auto;
    line-height: 1.5;
}

#logo {
  width: 100%;
  padding-top: 11px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
  transition: filter 0.3s ease;
  display: flex;
  justify-content: center;
}


.press-start-2p-regular {
  font-family: "Coral Pixels", serif;;
  font-weight: 400;
  font-style: normal;
}
