@font-face {
  font-family: "Minecraft";

src: url("fonts/Minecraft.woff2") format("woff2");
}

body {
  margin: 0;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #f4f4f4;
  text-align: center;
  background: url("images/background.jpg") no-repeat center center fixed;
  background-size: cover;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

h1 {
  font-family: "Minecraft", sans-serif;
  font-size: 3em;
  color: white;
  text-shadow: 2px 2px #000;
}

p {
  font-size: 1.2em;
}

.tags {
  margin: 15px 0;
  /* The below tags code stops the tags from taking the entire width*/
  display: flex;
  flex-wrap: wrap;         
  justify-content: center;  
  gap: 8px;                 
  max-width: 800px;         
  margin-left: auto;
  margin-right: auto;
}

.tag {
  display: inline-block;
  background: #C0C0C0;
  color: #222; 
  border: 1px solid grey;
  padding: 6px 12px;
  margin: 5px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.tag.active {
  background: #7ac97a;
    border: 1px solid green;
  color: #000;
}




.seed-list {
  margin-top: 20px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.seed {
  display: none; /* hiding seeds by default */
  background: rgba(255, 255, 255, 0.85); 
  color: #000; 
  padding: 12px;
  border-radius: 6px;
  margin: 10px 0;
}