body {
  background: url('../allImages/controlsImages/instructions page.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 50px 20px;
  text-align: center;
}

h1 {
  text-align: center;
  font-size: 3em;
  margin-bottom: 40px;
}

.instructions-box {
  position: relative;
  color: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 900px;
  margin: auto;
  margin-top: 60px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  z-index: 1;
  overflow: hidden;
}

/* Transparent metal background (using pseudo-element) */
.instructions-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../allImages/controlsImages/metal1.jpg') center center / cover no-repeat;
  opacity: 0.7; /* transparency */
  z-index: 0;
}

/* Semi-transparent black div box */
.instructions-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* darkens the metal background */
  z-index: 1;
}

/* Content above both layers */
.instructions-box * {
  position: relative;
  z-index: 2;
}


.icon-instructions {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.icon-instructions li {
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.big-icon {
  width: 120px; /* adjust size of icons */
  height: auto;
  display: block;
  margin: 10px auto;
}

.footer-note {
  font-size: 1.3rem;
  margin-top: 30px;
  color: #ffeb3b;
}
