.sidebar img {
    width: 100px;
    height: 100px;
    margin: 10px
}

/* video {
  position: relative;
  left: 36%;
  transform: translateX(-50%);
} */
video {
  display: block;
  margin: 20px auto; /* Centering the video */
  max-width: 100%; /* Make the video responsive */
  border-radius: 10px; /* Adding a subtle rounded border */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adding a shadow for depth */
}

body {
  background-image: url("pic/Jelly.gif");
  background-color: #cccccc;
  background-size: cover; /* Scales the image to cover the entire background */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-position: center center; /* Centers the image in the viewport */
}

/* Additional inline styles for quick adjustments */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
header {
  background-color: #003366;
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
header nav ul li {
  margin: 0 15px;
}
header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem; /* Increased font size for header links */
  transition: color 0.3s;
}
header nav ul li a:hover {
  color: #cce5ff;
}
.sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar img {
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  width: 200px; /* Set fixed width for sidebar images */
  height: 120px; /* Set fixed height for sidebar images */
  margin: 10px 0;
}
.content {
  text-align: center;
  padding: 20px;
  flex: 2;
}
video {
  max-width: 100%;
  width: 375px; /* Set a specific width for the video */
  height: auto;
  border: 2px solid #003366;
  border-radius: 10px;
  margin: 0 auto; /* Center the video */
  display: block;
}
footer {
  background-color: #f8f9fa;
  padding: 20px;
  text-align: center;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  background-image: url('docs/pic/cuny.jpg'); /* footer image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer-content img {
  max-width: 100px;
  margin-bottom: 10px;
}
footer p {
  margin: 0;
  color: #333;
  font-size: 1.2rem; /* Increased font size for footer text */
}


figure {
    width: 300px; 
    margin: 0 auto 20px auto; 
    text-align: justify; 
}

figcaption {
    margin-top: 10px; 
    font-size: 18px; 
    color: #FFD700; 
    text-align: justify; 
}

img {
    width: 100%; 
    height: auto; 
    display: block;
}


.navbar {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 20px;
}

.menu-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.menu-text {
    margin-right: 10px;
    font-size: 16px;
    color: #87CEEB;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 25px;
}

.hamburger .line {
    background-color: #87CEEB;
    height: 2px;
    width: 100%;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #0B1D37;
    border: 1px solid #87CEEB;
    display: none;
}

.menu li {
    margin: 0;
    padding: 10px 20px;
}

.menu li a {
    color: #87CEEB;
    text-decoration: none;
}

.menu li a:hover {
    color: #fff;
}

.menu.show {
    display: block;
}

.menu-icon {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}


#search-results {
    margin-top: 10px;
    text-align: center;
    color: #ffffff; 
}

#search-results a {
    color: #4CAF50; 
    text-decoration: none; 
}

#search-results a:hover {
    color: #FF5733; 
}

#search-results p {
    color: #b3b3b3; 
}


.text-gold {
    background: linear-gradient(45deg, #FFFFFF, #DDDDDD, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 2px #0AC2B4, 0 0 5px #0AC2B4, 0 0 10px #FFFFFF;
    font-weight: bold;
}
