@font-face {
  font-family: 'Minecraft';
  src: url('https://fonts.cdnfonts.com/s/15904/MinecraftTen-VGORe.woff') format('woff');
}

body {
  margin: 0;
  font-family: 'Minecraft', sans-serif;
  background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRUvSekMF_cTCPlXiQX0VjfIeLyK4-j6UVDOg&s') no-repeat center center fixed;
  background-size: cover;
  color: white;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

header {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  text-align: center;
}

header img {
  width: 100px;
  margin-bottom: 10px;
}

header h1 {
  font-size: 3rem;
  color: #cba6f7;
  margin: 0;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

nav a:hover {
  border-bottom: 2px solid #cba6f7;
}

section {
  padding: 100px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
  color: #cccccc;
}
