
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
i{
    font-size: 30px;
    color: white;
    padding: 5px;
}
a{
    text-decoration: none;
    color: white;
}
ul{
    list-style: none;
}


body{
  font-family: "Amiri", serif;
    background-color: #000000;
    color: white;
}
header{
  height: 20vh;
  background-color: rgb(0, 0, 0);
}

/* Start Header Section */
.header{
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:5px 20%;
  font-size: 19px; 
}
i.menu{
display: none;
}
.nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;

}
.nav img{
  width: 80px;
}
.nav ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 50%;
}
.nav ul li{
  display: inline-block;
}
.nav ul li a{
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin: 0 10px;
  padding: 10px;
  transition: 0.5s;
}
.nav ul li a:hover{
  color: red;
  margin: 0 10px;
  border-radius: 5px;
}
.input-search{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.input-search input{
  max-width: 300px;
  padding: 10px;
  border-radius: 5px;
  border: none;
}
.input-search .button{
  padding: 3px;
  background-color:red;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}












main {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-header {
  text-align: center;
  margin-bottom: 20px;
}

.article-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.article-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.article-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #cccccc;
}



/* Start Footer Section  */
footer{
  background-color:#1b2631;
  color: white;
  padding: 20px;
  text-align: center;
}
footer{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
footer .about{
  max-width: 300px;
  font-size: 20px;
}
.number-vip{
  max-width: 300px;
}
.number-vip h4{
  font-size: 20px;
  margin-bottom: 10px;
}
.number-vip ul li{
  margin: 6px 0;
  padding: 5px;
}
.number-vip ul li:hover{
  background-color: red;
  color: white;
  border-radius: 5px;
}
footer .contact{
  max-width: 500px;
  font-size: 20px;
}
footer .contact ul li{
  margin: 6px 0;
  padding: 5px;
}
footer .contact ul li:hover{
  background-color: red;
  color: white;
  border-radius: 5px;
}
footer .social{
  max-width: 300px;
  font-size: 20px;
}
footer .social img{
  width: 100px;
  height: 100px;
  margin: 10px;
}

/* End Footer Section  */









@media (max-width: 1080px) {

  .content {
    flex: 1 1 calc(50% - 20px); 
  }
  .nav img{
  width: 60px;
  }
  .nav ul li a{
    font-size: 16px;
  }
  .input-search input{
    max-width: 200px;
    padding: 6px;
    border-radius: 3px;
    border: none;
  }
  .input-search .button{
    padding: 1px;
    background-color:red;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.input-search{
margin-left: 20px;
}
i{
  font-size: 20px;
  color: white;
  padding: 5px;
}
.header a{
  font-size: 16px;
}
}



@media (max-width: 750px) {
  .content {
    flex: 1 1 calc(100%);
  }
  .nav img{
  width: 50px;
  margin: 0 140px;
  }

  #menu {
    position: absolute;
    top: 100px;
    right: 0;
    background-color: rgb(0, 0, 0);
    width: 100%;
    display: none;
    flex-direction: column; 
  }

  #menu li {
    display: block;
    text-align: center;
  }

  #menu li a {
    display: block;
    padding: 15px;
    font-size: 20px;
  }
  
  #menu{
    display: none;
  }
  .nav{
    justify-content: center;
    align-items: center;
  }
  .input-search input{
    max-width: 160px;
    padding: 3px;
    border-radius: 3px;
    border: none;
  }
  .input-search .button{
    padding: 1px;
    background-color:red;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.article-header h1 {
  font-size: 2rem;
}

.article-content p {
  font-size: 1rem;
}

.input-search{
margin-left: 15px;
}
i{
  font-size: 20px;
  color: white;
  padding: 5px;
}
.header a{
  font-size: 16px;
}
i.menu{
  margin-left: 90px;
  display: block;
  font-size: 28px;
  cursor: pointer;
}

footer{
  display:grid;
}
footer .about{
  text-align: center;
  max-width: 440px;
  font-size: 18px;
  margin-bottom: 15px;

}
.number-vip{
  max-width: 440px;
}
.number-vip h4{
  font-size: 18px;
  margin-bottom: 10px;
}
.social{
  max-width: 440px;
  text-align: center;
  margin: 0 auto;
}
.social-links a i{
  font-size: 30px;
  margin: 0 10px;
}
}








/* Responsive All Nav */

@media (max-width: 750px) {

  .nav img{
    width: 50px;
    margin: 0 100px;
    }
  
}

@media (max-width: 600px) {

  .nav img{
    width: 50px;
    margin: 0 30px;
    }
  
}
@media (max-width: 480px) {
  .content-text h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .content-text a {
    color: rgb(255, 255, 255);
    text-decoration: none;
  }
  .content-text a h2{
    padding: 10px;
    background-color: red;
  }
  .content-text #number{
    padding: 10px;
    background-color: red;
  }

}
@media (max-width: 450px) {
  
  .nav{
    justify-content: center;
    align-items: center;
  }

  .links a i{
    font-size: 15px;
    }
    .header h3 a{
      font-size: 15px;
    }
  .nav img{
    width: 50px;
    margin: 0 0 0 20px;
    }
}


@media (max-width: 390px) {

  .nav{
    justify-content: center;
    align-items: center;
  }
  .links a i{
    font-size: 13px;
    }
    .header h3 a{
      font-size: 13px;
    }
  .nav img{
    width: 40px;
    margin: 0;
    }
}

@media (max-width: 358px) {

  .nav{
    justify-content: center;
    align-items: center;
  }
  .links a i{
    font-size: 11px;
    }
    .header h3 a{
      font-size: 11px;
    }
  .nav img{
    width: 40px;
    margin: 0;
    }
}

/*//// Responsive All Nav ////*/











