/* GENERAL PAGE STYLING */
body {
  font-family: 'Fredoka', sans-serif;
  background-image: url('Minecraft Background (For Minecraft Page).png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  text-shadow: 2px 2px 4px black;
}

/* MENU STYLING */
.top-menu {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: #111;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* MUSIC BUTTON */
#music-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #111;
  border: 2px solid white;
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  text-shadow: 2px 2px 4px black;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#music-toggle:hover {
  transform: scale(1.15);
  box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}

/* SECTION STYLING */
section {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 50px 20px;
}

h1, h2, p {
  margin-bottom: 20px;
  border-radius: 12px;
}

/* IMAGES */
img {
  max-width: 80%;
  height: auto;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
 
