*{
    margin: 0;
    padding: 0;
}
body{
    min-height: 100vh;
    background-image: url(img/christopher-gower-m_HRfLhgABo-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
nav{
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 3px 3px 20px rgba(40, 16, 197, 0.29);
    backdrop-filter: blur(0px);
}
nav ul{
    width: 100%;
    height: 70px;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav li{
    height: 50px;
}
nav a{
    height: 100%;
    padding: 0 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    transition: 0.5s ease-in-out;
}
/*add a animated seamless pattern here lol*/
nav a:hover{
    background-color: lightblue;
}
nav li:first-child{
    margin-right: auto;
}
.sidebar{
    position:fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: green;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width: 100%;
}


.container {
  overflow: hidden;
}

/*
  specify the scroll x (or y) with the width (or height) of the images
  In this case, the image dimension is :
  width: 1920px;
  height: 808px;
*/

@keyframes bgScroll {
  0% {
    background-position : 0px 0px
  }
  100% {
    background-position : 0px -808px
  }
}

.scrollingBG {
  display:block;
  position: rela;
  width:100vw;
  height:100vh;
  background-image:url("bg.png");
  animation: bgScroll 30s linear infinite;
  display: flex;

}

.footerbrown{
    background-color: #86C7FC;
    width: 100%;
    height: 40%;
    margin-top: -70px;
    position: absolute;
    bottom: 0;
}

.ch {
    position: fixed; /* Fixes to the viewport */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2200px; /* Fixed width */
    height: 1800px; /* Fixed height */
    background-image: url("arctos.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center 800px;
    z-index: 1000; /* Make sure it's above everything else */
    pointer-events: none; /* Optional, keeps it non-interactive */
}

@media (max-width: 1024px) {
    .ch {
        width: 1500px;
        height: 1345px;
        background-position: center 500px;
    }
}

@media (max-width: 768px) {
    .ch {
        width: 900px;
        height: 1235px;
        background-position: center 620px;
    }
}

@media (max-width: 480px) {
    .ch {
        width: 600px;
        height: 890px;
        background-position: center 220px;
    }
}