   * {
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #121212;
      color: white;
      margin: 0;
      padding: 0;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background-color: #222;
      color: #ff5722;
      flex-wrap: wrap;
    }

    header img {
      width: 12%;
    } 
    nav ul {
      list-style-type: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
    nav ul li a {
      color: #ff5722;
      text-decoration: none;
      font-size: 1.3em;
      padding: 10px 15px;
      transition: background-color 0.3s ease;
    }

    nav ul li a:hover {
      background-color: black;
      border-radius: 5px;
    }

    section {
      background-color: #1e1e1e;
      padding: 30px;
      border-radius: 8px;
      margin: 30px 0;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    h1 {
      color: #ffffff;
      text-align: center;
      margin: 30px 0;
    }

    h2 {
      color: #ff5722;
      margin-bottom: 15px;
    }

    p {
      line-height: 1.6;
      margin-bottom: 15px;
      color: #dddddd;
    }

    ul {
      margin-left: 25px;
      margin-bottom: 20px;
    }

    li {
      margin-bottom: 8px;
    }

    pre {
      background-color: #2a2a2a;
      padding: 15px;
      border-left: 4px solid #ff5722;
      border-radius: 5px;
      margin: 20px 0;
    }

    code {
      font-family: monospace;
      color: #ffd54f;
    }

    .section img {
      width: 100%;
      max-width: 700px;
      display: block;
      margin: 10px auto;
      border-radius: 8px;
      box-shadow: 0 0 12px rgba(255, 87, 34, 0.4);
    }

    .section .title {
      text-align: center;
      font-size: 22px;
      color: #ff7043;
      margin-bottom: 10px;
    }
.video {
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.video h2 {
  color: #ff5722;
  margin-bottom: 20px;
  font-size: 24px;
}

.video iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.4);
}



footer {
    background-color: #1e1e1e;
    color: #f1f1f1;
    padding: 40px 20px;
    text-align: center;
}

footer h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #ff5722;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

footer ul li p {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

footer ul li p:hover {
    color: #ff5722;
}

footer p {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}
@media screen and (max-width:376px) {
  header {
    display: flex;
    justify-content:center ;
  }

  header img {
    width: 25%;
    margin-bottom: 10px;
    
  }
  nav ul {
    flex-direction: column;
    gap: 5px;
  }

  nav ul li a {
    font-size: 1em;
    padding: 8px 10px;
  }

  .section img {
    width: 100%;
  }
  pre{
    font-size: 0.9em;
  }

  .video iframe {
    height: 250px;
  }
}

