@font-face {
  font-family: 'AgencyFB-Bold';
  src: url('AgencyFB-Bold.ttf');
  font-weight: bold;
  font-style: normal;
}

:root {
  --home-bg-color: #f2f3ee;
  --menu-bg-color: #cbcbc2;
  --silde-btn-border: #808080;
  --slide-btn-bg: #ddf2db;
  --slide-btn-hoverbg: #f1fff1;
  --alpha-green: rgba(33, 96, 47, 0.51);
  --icon-hover-color: #344a39;
  --icon-hover-bg: #709680;
  --text-color: #616161;
  --border-color: #709680;
  --heading-color: #344a39;
  --box-shadow-color: #b5b5ac;
  --lightest-green: #86a58d;
  --light-green: #9ab09a;
  --dark-green: rgba(52, 74, 57, 0.86);
  --box-shadow: 0px 0px 3px 5px var(--box-shadow-color);
  --border-radius: 60px 5px;
  --fade-green: rgba(57, 87, 64, 0.55);
}


body {
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-family: 'AgencyFB-Bold';
  background-image: linear-gradient(to right top, #1b0957, #251f79, #2a369d, #284ec3, #1267eb);
  color: white;
}

:root {
  --background-color: #00218f;
  --text-color: #ffd13f;
  --accent-color: #0065d1;
  --smal-text: #ebe55f;
  --extra: #00bdff;
}

header {
  display: flex;
  justify-content: flex-end;
  height: 200px;
}
 
 
 nav {
  display: flex;
  justify-content: space-around;
}

nav img {
  border-radius: 30px;
  margin-right: 200px;
}

 ul {
  display: flex;
  justify-content: space-around;
}

 ul {
  display: flex;
  justify-content: space-around;
}

li {
  display: flex;
  justify-content: space-evenly;
}

.ham-menu{
  display: none;
}

#ham-menu {display: none;}
.technoimg  {
  display: none;
}
p {
  font-size: 14px;
  color: white;
  font-weight: 900;
}

h1 {
  font-size: 34px;
  color: white;
}
    strong{
        display: flex;
        justify-content: center;
        align-items: center;
    }
.ham-menu {
  display: none;
}

input#ham-menu {
  display: none;
}

.header-desktop {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
    button {
        cursor: pointer;
        color: rgb(255, 255, 255);
        border-radius: 18px;
        background-color: transparent;
        font-size: 40px;
    }

    button.button2 {
      border: none;
      cursor: pointer;
      color: rgb(255, 255, 255);
      border-radius: 0px;
      background-color: transparent;
      font-size: 14px;
      font-family: 'AgencyFB-Bold';

  }

    button#close-btn {
        margin-left: 3.4cm;
        border-radius: 10px;
        font-size: large;
        color: white;
        background-color: lightblue;
        border-color: blue;
    }

    .containerbtn {
        width: 100%;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 120px;
        margin-top: -150px; /* Change this line to remove the top margin */
      }

    .button23 {
        position: relative;
        padding: 16px 30px;
        font-size: 1.5rem;
        color: var(--color);
        border-radius: 4px;
        text-shadow: 0 0 15px var(--color);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.1rem;
        transition: 0.5s;
        z-index: 1;
      }

      .button23:hover {
        color: #fff;
        border: 2px solid rgba(48, 75, 194, 0);
        box-shadow: 0 0 0px var(--color);
      }
      
      .button23::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--color);
        z-index: -1;
        transform: scale(0);
        transition: 0.5s;
      }
      
      .button23:hover::before {
        transform: scale(1);
        transition-delay: 0.5s;
        box-shadow: 0 0 10px var(--color),
          0 0 30px var(--color),
          0 0 60px var(--color);
      }
      
      .button23 span {
        position: absolute;
        background: var(--color);
        pointer-events: none;
        border-radius: 2px;
        box-shadow: 0 0 10px var(--color),
          0 0 20px var(--color),
          0 0 30px var(--color),
          0 0 50px var(--color),
          0 0 100px var(--color);
        transition: 0.5s ease-in-out;
        transition-delay: 0.25s;
      }
      
      .button23:hover span {
        opacity: 0;
        transition-delay: 0s;
      }
      
      .button23 span:nth-child(1),
      .button23 span:nth-child(3) {
        width: 40px;
        height: 4px;
      }
      
      .button23:hover span:nth-child(1),
      .button23:hover span:nth-child(3) {
        transform: translateX(0);
      }

      .button23 span:nth-child(2),
      .button23 span:nth-child(4) {
        width: 4px;
        height: 40px;
      }
      
      .button23:hover span:nth-child(1),
      .button23:hover span:nth-child(3) {
        transform: translateY(0);
      }
      
      .button23 span:nth-child(1) {
        top: calc(50% - 2px);
        left: -50px;
        transform-origin: left;
      }
      
      .button23:hover span:nth-child(1) {
        left: 50%;
      }
      
      .button23 span:nth-child(3) {
        top: calc(50% - 2px);
        right: -50px;
        transform-origin: right;
      }
      
      .button23:hover span:nth-child(3) {
        right: 50%;
      }
      
      .button23 span:nth-child(2) {
        left: calc(50% - 2px);
        top: -50px;
        transform-origin: top;
      }
      
      .button23:hover span:nth-child(2) {
        top: 50%;
      }
      
      .button23 span:nth-child(4) {
        left: calc(50% - 2px);
        bottom: -50px;
        transform-origin: bottom;
      }
      
      .button23:hover span:nth-child(4 ) {
        bottom: 50%;
      }
aside {
    background-color: black;
    color: rgb(251, 163, 0);
    z-index: 123;
  }

.background {
    background-size: cover;
    background-repeat: no-repeat;
    height: 800px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #000000;
}

strong {
    font-size: 54px; /* Adjust the font size as needed */
    margin-top: 20px; /* Adjust the top margin to create space */
}



header {
    display: flex;
    justify-content: center;
}

ul {
    list-style-type: none;
    display: flex;
    margin: 10px 0px;
    padding: 0;
    justify-content: center;
    align-items: center;
}


li {
    padding: 0px;
    margin: 0 15px;
}

li a {
    text-decoration: none;
    font-weight: bold;
    color: blueviolet;
}


li a:hover {
    color: #00ff62;
}

#hamburger-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.container_pr-text {
    padding: 12px;
    justify-content: center;
    align-items: center;
    display: block;
    background: transparent;
    border-top: 20px solid rgb(150, 165, 239);
    border-radius: 30px;
    box-shadow: -10px 0px 1220px lightblue;
    margin-bottom: 30px;
}


.pr-text p{
    display: inline;
    font-weight: 900;   
    color: white;
}
.timeline {
    position: relative;
    margin-left: 10px;
    margin: 0 auto;
    box-shadow: -520px 30px 1300px;
    overflow: hidden; /* Hide overflowing content to create a circular effect */
}

.line {
    position: absolute;
    width: 20px;
    height: 100%;
    background-color: black;
    left: 0%;
    transform: translateX(-50%);
}

.event {
    position: relative;
    margin: 20px 0;
    padding-left: 30px;
    display: flex;
    align-items: center;
}

.event::before {
    display: flex;
    content: attr(data-year);
    position: absolute;
    top: 50%;
    left: 5px;
    width: 36px;
    height: 39px;
    background-color: #0074D9;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.event:hover::before {
    transform: scale(1.5); /* Scale up the event marker on hover */
}

.year {
    font-weight: bold;
}

.language {
    font-weight: bold;
    color: rgb(255, 255, 255);
}

.description {
    margin-top: 5px;
    color: white;
}

div img{
  width: 30%;
}


.info-text {
    text-align: center;
    margin-top: 130px;
    font-style: italic;
    color: #555;
}

.snake-container {
    width: 100%;
    overflow: hidden;
    height: 500px;
    z-index: 1;
    margin-top: -500px;
  }
  
  .snake {
    background-color: rgb(0, 0, 0);
    width: 50px;
    height: 50px;
    animation: snakeMove 4s linear infinite;
    position: relative;
    top: 50%;
    left: -50px;
    z-index: 2;
    border-radius: 30px 0px;
  }
  

  
  @keyframes snakeMove {
    0%, 100% {
      left: -50px;
      top: 50%;
    }
  
    25% {
      left: 100%;
      top: 25%;
    }
  
    50% {
      left: 100%;
      top: 75%;
    }
  
    75% {
      left: -50px;
      top: 50%;
    }
  }
  .hideimg {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-desktop {
    display: none;
  }  

  .hideimg {
    display: block;
    width: 30%;
  }

  input#ham-menu{
    display: none;
  }

      header img{
        height: 100px;
        width: auto;
      }
      
      #ham-menu {
        display: block;
      }
      label[for="ham-menu"] {
        display: block;
        position: fixed;
        top: 24px;
        z-index: 999;
        width: 60px;
        height: 60px;
        background-color: var(--home-bg-color);
        border-radius: 15px;
        border: 2px solid var(--border-color);
      }
      
      .ham-menu-label {
        display: block;
        position: fixed;
        top: 24px;
        right: 20px; /* Adjust the right position as needed */
        z-index: 999;
        width: 60px;
        height: 60px;
        background-color: var(--home-bg-color);
        border-radius: 15px;
        border: 2px solid var(--border-color);
      }
      
      .ham-menu {
        width: 50vw;
        height: 100%;
        position: fixed;
        top: 0;
        visibility: hidden;
        transform: translateX(110%); /* Change translate value to move to the right */
        z-index: 998;
        background-color: var(--lightest-green);
        transition: 1s;
        display: flex;
        justify-content: center;
        align-items: center;
      }  
      
      .ham-menu > ul {
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-around;
        height: 50%;
        left: 0;
      }
      .ham-menu > ul > li {
        font-size: 1rem;
        white-space: nowrap;
        letter-spacing: 0.15em;
        cursor: pointer;
        color: rgb(97, 97, 97);
      }
      #ham-menu:checked + label {
        background-color: transparent;
        border-color: var(--dark-green);
      }
      #ham-menu:checked ~ div.ham-menu {
          transform: translate(0px);
          visibility: visible;
          right: 0;
      }
      .full-page-green {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--dark-green);
        z-index: 997;
        opacity: 0;
        visibility: hidden;
        display: none;
        transition: 500ms;
        position: fixed;
        top: 0;
        left: 0;
      }
      #ham-menu:checked ~ div.full-page-green {
        display: block;
        opacity: 1;
        visibility: visible;
      }
      [for="ham-menu"] > div {
        width: 100%;
        height: 100%;
        display: flex;
        flex-flow: column wrap;
        align-content: center;
        align-items: center;
      }
      .menu-line {
        display: block;
        width: 17px;
        height: 2px;
        margin: 10px 0 5px;
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
        background-color: var(--border-color);
        transition: 500ms;
        transform-origin: right center;
      }
      [for="ham-menu"] > div > span:nth-child(4),
      [for="ham-menu"] > div > span:nth-child(5),
      [for="ham-menu"] > div > span:nth-child(6) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
        transform-origin: left center;
      }
      #ham-menu:checked + label span {
        background-color: var(--dark-green);
      }
      #ham-menu:checked + label span:nth-child(2),
      #ham-menu:checked + label span:nth-child(5) {
        transform: scale(0);
      }
      #ham-menu:checked + label span:nth-child(1) {
        transform: translateY(17px) rotate(45deg);
      }
      #ham-menu:checked + label span:nth-child(4) {
        transform: translateY(17px) rotate(-45deg);
      }
      #ham-menu:checked + label span:nth-child(3) {
        transform: translateY(-17px) rotate(-45deg);
      }
      #ham-menu:checked + label span:nth-child(6) {
        transform: translateY(-17px) rotate(45deg);
      }
}