*{
    margin: 0;
    padding: 0;
}
html{
  overflow-x: hidden;
}
body{
    background-color: #1d1c1b;
    min-height: 100vh;
    overflow-x: hidden;
}
h1, h2, h3, p, a{
    font-family: 'Noto Kufi Arabic', sans-serif;
}

.href{
    color: aqua;
}

header h1{
    padding-top: 200px;
    color: white;
    text-align: center;
    font-size: 40px;
}
header p{
    margin: auto;
    text-align: center;
    color: white;
    width: 50%;
}
.Video{
    margin: 50px auto;
    text-align: center;
}
iframe{
    max-width: 100%;
}

.Post{
    margin: 50px 0;
}
.Post h2{
    color: aqua;
    margin: 50px 400px;
}
.Post p{
    color: white;
    width: 50%;
    margin: auto;
}
.Post img{
    width: 30%;
    margin: auto;
    display: flex;
    border-radius: 5px;
    max-width: 100%;
}
.Post video{
    width: 40%;
    margin: auto;
    display: flex;
    border-radius: 5px;
    max-width: 100%;
}
.Post a{
    color: aqua;
    font-size: 18px;
}
.Post h3{
    color: #ff0000;
    margin: 20px 450px;
}
.Post ol{
    width: 50%;
    margin: auto;
    color: white;
    list-style-type: square;
}
.Post ol li{
    font-family: 'Noto Kufi Arabic', sans-serif;
}
.Post ul{
    width: 50%;
    margin: auto;
    color: white;
    list-style-type: decimal;
}
.Post ul li{
    font-family: 'Noto Kufi Arabic', sans-serif;
}
.hr{
    width: 50%;
    max-width: 100%;
    margin: 15px auto; 
}
hr{
    background-color: white;
    width: 60%;
    height: 3px;
    margin: auto;
    border-radius: 10px;
}

.imgs{
    width: 40%;
    max-width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
    gap: 30px;
}
.imgs img{
    width: 100%;
    max-width: 100%;
}

.TheEnd{
    width: 50%;
    margin: 30px auto;
}
.TheEnd h3{
    margin: 20px 0;
    text-align: center;
    color: white;
    font-size: 30px;
}

.h2{
    text-align: center;
    color: white;
    font-size: 40px;
    margin-top: 100px;
}
.Cont{
  width: 1800px;
  max-width: 100%;
  margin: 100px auto;
}
.row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card{
  flex: 1 1 21rem;
  display: flex;
  margin: 30px 50px;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  align-self: normal;
}
.card img{
  width: 400px;
  border-radius: 5px;
  transition: all .15s ease;
  object-fit: cover;
}
.card:hover img{
  transform: scale(1.1);
}
.card h2{
  font-size: 1.3rem;
  margin: 10px 0;
  color: white;
}


@media only screen and (max-width: 1400px) {
    .imgs{
        width: 80%;
    }
    .imgs img{
        width: 400px;
        margin: 10px;
        max-width: 100%;
    }
}
@media only screen and (max-width: 1100px) {
    header h1{
        padding-top: 100px;
        font-size: 40px;
    }
    header p{
        width: 90%;
        margin: 10px auto;
    }

    .Post h2{
        color: aqua;
        margin: 50px 100px;
    }
    .Post img{
       width: 50%;
    }

    .imgs{
        width: 87%;
    }
    .imgs img{
        width: 300px;
        margin: 10px;
        max-width: 100%;
    }
    
    .TheEnd{
        width: 80%;
        margin: 30px auto;
    }
}
@media only screen and (max-width: 650px) {
    .imgs{
        width: 100%;
    }
    .imgs img{
        width: 500px;
        margin: 10px;
        max-width: 100%;
    }
}
@media only screen and (max-width: 600px) {
    header h1{
        padding-top: 100px;
        font-size: 40px;
    }

    .Post h2{
        color: aqua;
        margin: 0px;
        text-align: center;
    }
    .Post p{
        color: white;
        width: 80%;
        margin: auto;
        text-align: center;
    }
    .Post img{
       width: 80%;
    }
    
    .TheEnd{
        width: 90%;
        margin: 30px auto;
    }


    .row{
        justify-content: center;
    }
    .card img{
        width: 350px;
    }
}

@media only screen and (max-width: 400px) {
    .card img{
        width: 300px;
    }
}
@media only screen and (max-width: 300px) {
    .card img{
        width: 200px;
    }
}