/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: rgb(134, 134, 134);
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes up at least the full viewport height */
    position: relative; /* Ensure relative positioning for absolutely positioned footer */
    overflow-x: hidden; /* Prevent horizontal scrollbar if content overflows */
}

header, main {
    width: 100%;
    text-align: center;
}

header {
    background-color: #000000;
    padding: 1em 0;
}

main {
    padding: 2em 0;
    flex: 1; /* Make main expand to fill remaining vertical space */
}


footer {
    text-align: center;
    position: inherit;
    bottom:0;
}

.dev {
  margin-top: 1px;
  text-align: center;
  color: rgb(134, 134, 134);
}


.container {
    /* Basic dimensions and centering */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
    /* Dark mode colors and gradient */
    background: #121212; /* Fallback for browsers that don't support gradients */
    background: linear-gradient(
      135deg,
      #121212 25%,
      #1a1a1a 25%,
      #1a1a1a 50%,
      #121212 50%,
      #121212 75%,
      #1a1a1a 75%,
      #1a1a1a
    );
    background-size: 40px 40px;
  
    /* Animation */
    animation: move 4s linear infinite;
  }
  
  @keyframes move {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 40px 40px;
    }
  }  