body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;

}
.container {
  width: 50%;
  margin: 20px auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
th {
  background-color: rgb(48, 48, 48);
  color: white;
}

.header-content > p {
    margin-left: 25%;
    margin-right: 25%;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  /*border: 2px solid rgb(20, 20, 20); */
  border: 2px solid rgba(160, 160, 160, 0.8);
}

#section0 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  color: white;
  background-image: url('./poopman.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
  text-align: center;

}

.section {
  justify-content: center;
  align-items: center;
  color: white;
}

.round-image {
  width: 200px; /* Adjust size of the round image */
  height: 200px; /* Keep width and height the same for a perfect circle */
  border-radius: 50%; /* Creates a round shape */
  object-fit: cover;
  border: 4px solid white; /* Optional: Add a border around the image */
}

.fade-in-paragraph {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.fade-in {
  opacity: 1;
}

h1 {
    padding: 5px
}

.dark {
    color: #202020;
}

.animated-gradient {
  width: 10px;
  height: 16px;
  background: linear-gradient(45deg, #FFC0CB, #87CEFA, #FFA07A);
  background-size: 600% 600%;
  transition: width 2s ease-in-out;
  border-radius: 4px;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate {
  animation: gradientAnimation 5s ease infinite;
}

#top-posters-1 {
    font-size: 36px;
}
#top-posters-1 img{
    width: 80px;
    height: 80px;
}

#top-posters-2 {
    font-size: 36px;
}
#top-posters-2 img {
    width: 70px;
    height: 70px;
}

#top-posters-3 {
    font-size: 32px;
}

#top-posters-3 img {
    width: 60px;
    height: 60px;
}

.bee {
  width: 80px; /* Adjust size as needed */
  height: 80px; /* Adjust size as needed */
  position: absolute;
  top: 50%; /* Start position */
  left: 50%; /* Start position */
  background: url('bee_transparent.png') no-repeat center center;
  background-size: contain;
  transition: top 2s ease-in-out, left 2s ease-in-out; /* Smooth transition */
  animation: rotateBee 13s ease infinite; /* Adjust timings as needed */
  z-index: 500;
  display: none;
}

@keyframes rotateBee {
  0% {
  transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
  transform: translate(-50%, -50%) rotate(65deg);
  }
  100% {
  transform: translate(-50%, -50%) rotate(0deg);
  }
}

#postedThatDay {
  font-size: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap; 
  width: 700px;
  gap: 8px;
  justify-content: center;
}

.card {
  width: 25%; /* Set your desired width */
  border-radius: 15px; /* Rounded corners */
  overflow: hidden; /* Clip overflow content */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Box shadow for a subtle effect */
  margin: 2px;
  height: auto;
  display: block !important;
}

.card img {
  height: auto;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the entire container */
}

.nametag {
  background-color: rgba(20, 20, 20, 0.8); /* Background color for nametag */
  color: white;
  padding: 8px 12px;
  position: absolute;
  bottom: 15px; /* Adjust positioning as needed */
  width: 100%;
  text-align: left;
}

#myVideo {
  height: 500px;
}