@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');
:root{
  --menu-bg-col: #05274D;
  --menu-f-col: #9ddf22;
  --news-bg-col: #006400;
  --news-f-col: #FFFFFF;
  --tblhr-bg-col: #01af6a;
  --tblhr-f-col: #FFFFFF;
  --tblbr-bg-col: #aee2ce;
  --tblbr-f-col: #000000;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body{
    min-height: 100vh;
    /* background: url('laptop.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  nav{
    background-color: var(--menu-bg-col);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  nav ul{
    
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  nav li{
    height: 70px;
  }
  nav ul h1 a{
    font-family: "Acme", sans-serif;
    font-size: 32px;
    color: yellow;
    line-height: 70px;
  }
  nav a{
    font-family: "Acme", sans-serif;
    font-size: 24px;
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--menu-f-col);
  }
  nav a:hover:not(.logo-txt){
    background-color: #f0f0f0;
    color: crimson;
  }
  nav li:first-child{
    margin-right: auto;
    color: white;
  }
  .sidebar{
    position: absolute;
    /* position: fixed; */
    top: 0; 
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: rgb(41, 39, 39);
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 999;
  }
  .sidebar li{
    width: 100%;
  }
  .sidebar a{
    width: 100%;
  }
  .menu-button{
    display: none;
  }
  
  @media(max-width: 400px){
    .sidebar{
      width: 100%;
      height: fit-content;
      z-index: 99999;
    }
    nav li:first-child{
      margin-right: auto;
      color: white;      
    }
  }

  h4 {
    font-family: "Acme", sans-serif;
    font-size: 600;
    color: brown !important;
    border-bottom: 2px solid rgb(35, 61, 2);
    width: fit-content;
    align-items: center;
  }
  
  
  /* .marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f3f3f3;
    color: #333;
    font-size: 20px;
    line-height: 50px;
}

.marquee img {
    width: 150px;
    height: 150px;
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
} */

.photobanner {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  column-rule: 4px double #000000;
}
  .photobanner img{
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 2px 2px gray;
    width: 150px;
    height: 150px;
    
    
  }
  .photobanner img:hover{
    border: 2px solid red;
  }

  @media screen and (min-width:120px) and (max-width:320px){
    nav ul h1 a{
      font-family: "Acme", sans-serif;
      font-size: 20px;
      color: yellow;
      line-height: 70px;
    }
  }
  
  @media screen and (min-width:321px) and (max-width:575px){
    nav ul h1 a{
      font-family: "Acme", sans-serif;
      font-size: 26px;
      color: yellow;
      line-height: 70px;
    }
  }
  
  @media(max-width: 800px){
    .hideOnMobile{
      display: none;
    }
    .menu-button{
      display: block;
    }
    .sidebar{
      position: absolute;
      /* position: fixed; */
      top: 0; 
      right: 0;
      height: 100vh;
      width: 250px;
      background-color: rgb(41, 39, 39);
      backdrop-filter: blur(12px);
      box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
      list-style: none;
      display: none;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      z-index: 999;
    }
  }
  
  @media(max-width: 992px){
    nav ul h3 a{
      font-family: "Acme", sans-serif;
      font-size: 24px;
      color: yellow;
      line-height: 70px;
    }
    nav a{
      font-family: "Acme", sans-serif;
      font-size: 18px;
      height: 100%;
      padding-right: 10px;
      text-decoration: none;
      display: flex;
      align-items: center;
      color: rgb(27, 223, 9);
    }

  }

  @media(min-width:992px) and (max-width: 1200px){
    nav ul h3 a{
      font-family: "Acme", sans-serif;
      font-size: 28px;
      color: yellow;
      line-height: 70px;
    }
    nav a{
      font-family: "Acme", sans-serif;
      font-size: 20px;
      height: 100%;
      padding-right: 10px;
      text-decoration: none;
      display: flex;
      align-items: center;
      color: rgb(27, 223, 9);
    }

  }  

  
  