@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding-top: 100px;
  background-image: url("Background.jpg");
  background-size: cover ;
  background-position: center ;
  background-repeat: no-repeat ;
  background-attachment: fixed;
}

header {
  letter-spacing: 3px; 
  font-size: 1,2rem;
  color: black;
  display: flex; 
  justify-content: center;
   flex-wrap: wrap;
   gap: 100px;
   padding:1rem 4rem;
   align-items: center;
}

header h1{
margin: 0;
line-height: 1;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

nav a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

section {
  text-align: center;
  margin: 10%;
  font-weight: bold;
}

.video-intro {
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
  font-style: italic;
  color: #333;
}

.video-intro {
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
  font-style: italic;
  color: #333;
}

video {
  display: block;
  width: 60%;              
  max-width: 500px;       
  height: auto;           
  margin: 10px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  color: #d0d0d0;
}


