body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f4f4f4;
}

.intro-page {
  display: flex;
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center the content vertically */
  /* height: 50vh; Ensure the intro page takes the full height of the viewport */
  margin-top: 15%; /* Adjust based on the height of the top bar */
  margin-bottom: 5%;
  flex: 1;
}

.intro {
  list-style-type:square; /* Remove default list styling */
  padding: 0;
  margin: 10px;
  width: auto;
}

li{
  font-size: 15px;;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 2%;
  /* text-transform:uppercase; */
}

.intro-link{
  text-decoration: none;
}


.grid-container {
    display: grid;
    margin: 0;
    margin-top:30px;
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    gap: 15px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    
}

.grid-item {
    aspect-ratio: auto;
    width: 90%;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-direction: column; /* Align items in a column */
    align-items: center; /* Center items horizontally */
}

.grid-item-vid {
  aspect-ratio: auto;
  width: 90%;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 4px;
  /* overflow: hidden; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-item-vid-tag{
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin:0;
  padding: 20px;
  width: 100%;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

.grid-item-vid img {
  width: 100%;
  height: auto;
  display: block;
}

.grid-item-vid:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.HomePage {
  padding-left: 5px;
  padding-right: 5px;
}

.icon img {
  padding-top:10px;
  padding-left:4px;
  width: 25px;
  opacity: 90%;
  vertical-align: middle;
}

#header {
  width: 100%; /* Ensure the top bar spans the full width */
  padding: 1%; 
  display: flex;
  justify-content: space-between; /* Distribute space between the text and image */
  align-items: center;
  background-color: rgba(255, 255, 255, 0.4); /* Set background color */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); Add shadow effect */
  position: fixed;
  top: 0; /* Position the top bar at the top of the viewport */
  margin-bottom: 4%;
  z-index: 1000; /* Ensure the top bar is above other elements */
}

#header-left {
  margin: 0; /* Remove default margin */
  margin-left: 10px;
  text-align: left; /* Align the heading to the left */
  transform: scale(1);
  transition: transform 0.6s ease-in-out; /* Smooth transition with easing */
  padding-left: 1%; /* Add padding to the left for better spacing */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 100%;
  flex: 1;
}
#header-right {
  text-decoration:none;
  margin-right: 25px;
  text-align: right;
  transition: transform 0.2s ease-in-out;
}
.clear-both {
  clear: both;
}

h1 {
  font-size: 18px;
  text-align: left;
  
}

.href{ 
  margin:0;
  padding:0;
}

.to-top{
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  /* padding-top: 2%; */
  padding-bottom: 2%;
}
a{
  text-decoration:underline;
  color: #000;
}

