.container {
    height: 50px;
    max-width: 1200px; /* adjust based on design */
    margin: 0 auto;
    padding: 0 22px; /* horizontal padding */
    display: flex;
    align-items: center; /* vertically center items */
    justify-content: space-between; /* spread items */
    overflow: hidden;
}

.nav-bar {
    height: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 5px rgba(21, 23, 24, 0.1);
    backdrop-filter: blur(10px); /* adds blur behind navbar */
    position: fixed;
    top: 0;
    z-index: 9999;
}


.bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;  /* relative to parent container */
  bottom: 0%;           /* stick to bottom of container */
  left: 0;
  width: 100%;
  height: 100px;       /* adjust as needed */
  background: #001932;
}
.bottom-bar-info {
  color: black;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

.menu {
    display: flex;
    gap: 25px; /* spacing between items */
}

.menu a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.menu a:hover {
    color: rgb(0, 0, 0); /* subtle hover effect */
}

    .Abelardoapex_Triangle_Background {
        position: fixed;
        align-items: center;
        justify-content: center;
        align-self: auto;
        width: 100%;
        height: auto;
        overflow: auto;
        opacity: 100%;
    }
        @media  (max-width: 1280px) {
            .Abelardoapex_Triangle_Background {
                    transform: translateY(80%) scale(150%);
                    opacity: 80%;
            }
        }
        @media  (max-width: 800px) {
            .Abelardoapex_Triangle_Background {
                    transform: translateY(100%) scale(190%);
                    opacity: 20%;
            }
        }


.sidebar {
  position: fixed;
  top: 0;
  right: -500px;
  width: 300px;
  height: 100vh;
  background-color: White;
  border-radius: 2%;
  box-shadow: -4px 0 20px rgba(0,0,0, 0.2);
  z-index: 1001;
  padding: 20px;
  transition: right 0.3s ease;

}




@media (max-width:768px){
    .sidebar{
        width: 200px;
        font-size: 100%;
    }
}

@media (max-width:384px){
    .sidebar{
        width: 150px;
        font-size: 75%;
    }
}

.sidebar.show {
  right: 0;
}

#sidebar{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
}

a {
    text-decoration: none;
    color: rgb(52, 52, 52);
    font-size: 125%;
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
}

.overlay.show {
  display: block;
}


