body {
    display: block;
    width: 100%;
    margin: 0;
    /* background-color: rgb(218, 218, 189); */
    background-color: white;
    
}

/* header section  */

header {
    background-color: black;
    color: white;
}

header a {
    text-decoration: none;
    color: white;
}

header a:hover {
    /* background-color: orange; */
    color: orange;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 15px 20px;
    color: white;
}

.navbar .logo {
    /* font-size: 24px; */
    /* font-weight: bold; */
    display: flex
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 5px 0;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 150px;
        background-color: rgba(2, 2, 2, 0.8);        
        /* text-align: center; */
        z-index: 100;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
    }
}



/* Hero section  */

.hero {
    background-color: rgb(20, 20, 20);
    
}


video {
    width: 100%; 
    height: auto;
}

.image_in_colummn {
    background-size: cover;
}

/* Latest News section  */

/* .news-bottom {
    background-color: rgb(31, 55, 100);
    width: 100%;
    height: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
} */

.rounded-top {
    width:100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.news-date {
    font-size: smaller;
    padding-top: 0;
    margin: 0;
    padding-right: 0.5rem;
}

.news-box {
    background-color: rgb(145, 114, 76);
    border-radius: 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 1.0);
}

.news-column {
    background-color: rgb(238, 238, 238);
    padding:0.5rem; 
    margin:0;
    width:105%;
    height:100%;
    border-radius: 10px;
}

.shadowed-box {
    width: 200px;
    height: 100px;
    background-color: white;
    border-radius: 10px; 
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    line-height: 100px;
    font-weight: bold;
}

/* our games section  */

.rounded-top-10 {    
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.rounded-10 {
    border-radius: 10px;
}



.about1 {
    background-color: rgb(198, 207, 211);
}

.about {
    /* background-image: url("./images/pexels-eberhardgross-1004682.jpg"); */
    background-image: url("./images/pexels-moritz-feldmann-3362914-18812771_crop2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 700px;
}

.text-box {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px); 
    border-radius: 20px;
    padding: 20px;
    color: black;
}



.video-container {
    position: relative;
    width: 100%;
    /* height:100%; */
    aspect-ratio: 16 / 9;
    
    overflow: hidden;
  }
  
  .video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transform: translate(-50%, -50%);
    z-index: 1; 
  }
  
  .content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px;
  }


  .image-hover:hover {
    transform: scale(1.1);
    /* opacity: 0.8; */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); */
}

.our-sns-icon:visited {
    color: black;
}

.our-sns-icon {
    color: black;    
}

.no-text-deco {
    text-decoration: none;    
}

/* footer section  */
footer {
    background-color: black;
    color: white;
}



