/* Hide all mod buttons by default */
.mod-button {
    display: none;
  }
  
  /* Show mod buttons when the checkbox with the relevant tag is checked */
  #tag-120:checked ~ .grid .tag-120,
  #tag-combat:checked ~ .grid .tag-combat,
  #tag-redstone:checked ~ .grid .tag-redstone {
    display: inline-block; /* Or block depending on your design */
  }
  
  .big-link {
    font-size: 100px;
    font-weight: bold;
  }
  
  body {
    background-color: orange;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
  }
  
  .topic {
    font-size: 100px;
    color: white;
  }
  
  img {
    width: 400px;
    height: 300px;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    position: relative; /* Establishes a positioning context */
  }
  
  .right-link {
    position: absolute;
    right: 1000px;
    top: -410px;
    text-decoration: none;
    color: inherit;
  }
  
  .right-link {
    font-size: 10px; /* Adjust the size as needed */
    text-decoration: none;
    color: inherit;
  }
  
  /* Basic page setup */
  .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .comment-box {
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  .comment-box p {
    margin: 10px 0;
  }
  
  .comment-box a {
    text-decoration: none;
    color: #007bff;
  }
  
  .comment-box a:hover {
    text-decoration: underline;
  }
  
  /* Flexbox-based page setup */
  body {
    background-color: #f7f9fb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  