
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: Arial, sans-serif;
  background: #000000; 
  color: #333;
  line-height: 1.6;
  padding: 1rem;
}


header {
  text-align: center;
  margin-bottom: 1.5rem;
}

header h1 {
  font-size: 2rem;
  color: #444;
}


nav ul {
  list-style: none;
  display: flex;
  flex-direction: column; 
  gap: 0.5rem;
  padding: 0;
  margin-bottom: 2rem;
}

nav a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  background: #6f6f6f;
  border-radius: 8px;
  text-align: center;
  color: #ffffff;
  transition: background 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

nav a:hover {
  background: #e6e6e6;
}



@media (min-width: 768px) {
  nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav li {
    flex: 1 1 200px; 
  }
}

#mg-video {
  display: flex;
  justify-content: center;
  background-color: #000000;
  padding: 1rem;
}

#mg-video video {
  max-width: 90%;  
  height: auto;     
  border-radius: 8px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}
