* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: vazir;
    background: #e0e2e2;
}
/* Added fonts */
@font-face {
    font-family: vazir;
    src: url("fonts/fonts/Vazir-Medium-FD-WOL.woff2");
}




/* container */
.container {
    width: 1140px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
/* Start header */
.header {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    padding: 20px 0;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.menu-links {
    text-decoration: none;
    color: #000;
    font-size: 14px;

}

/* main styles */

/* gallery */
.gallery {
    margin: 20px 0;
}
.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(5 , 1fr);
    gap: 10px;
}
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* video */
.video {
    margin: 60px 0;
}
.video-title , 
.tizzer-title{
    margin-bottom: 30px;
}
.video-wrapper {
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
    gap: 10px;
}
.video-wrapper__items {
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
}
.video-wrapper__items video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);

}
.video-wrapper__items h4 {
    margin: 20px 0;
    text-align: center;
    font-size: 14px;
}
/* tizzer */
.tizzer {
    margin: 60px 0;
}
.tizzer-wrapper {
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    gap: 10px;
}
.tizzer-wrapper video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* footer */
.footer p {
    text-align: center;
    padding-bottom: 30px;
    font-size: 14px;
}
