.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Adjust the number of columns as needed */
  grid-gap: 10px; /* Adjust the gap between images */
}


.image-grid img {
  width: 100%;
  height: auto;
}

footer {
  background: linear-gradient(to right, #83c38f, #ffffff, #56e684); /* Adjust the gradient colors as needed */
  padding: 10px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left,
.footer-right {
  flex: 1;
}

.footer-left h3,
.footer-right h3 {
  font-size: 14px;
  margin-bottom: 5px;
  color: #fff; /* Set the color to white */
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  color: #888;
  font-size: 12px;
}

/* Rest of the CSS code remains the same */




.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropdown-item {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dropdown .dropdown-item i {
  margin-right: 5px;
}

.dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}


/* Basic CSS styling */
body {
  background: linear-gradient(to bottom, #bebcc1, #ffffff, #1ab02e);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;

}

header {
  background-color: #2fbb50;
  color: #fff;
  padding: 1px;
  text-align: center;
}

.container {
  max-width: 40px;
  margin: 20px auto;
  padding: 20px;
}

.category {
  margin-bottom: 20px;
}

.category-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.movie {
  margin-bottom: 20px;
  padding: 10px;
  background-color: linear-gradient(to right, #2f39ca, #ffffff, #675a8f); /* Adjust the gradient colors as needed */
  padding: 10px;
}

.movie h3 {
  margin: 0;
}

.download-button {
  background-color: #c91711;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
}

.download-button:hover {
  background-color: #565656;
}

/* Top navigation CSS */
.topnav {
  background-color: #2f39ca;;
  overflow: hidden;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

/* Dropdown menu CSS */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropdown-item {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #636764;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #070707;
}



.trends-block {
  border: 1px solid #ccc;
  padding: 10px;
  width: 350px;
}

.tb-header {
  background-color: #133dc9;
  padding: 5px;
}

.tb-header h2 {
  margin: 0;
}

.tb-list {
  margin-top: 10px;
}

.tb-list article {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.tb-thumb img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10%;
  margin-right: 10px;
  -webkit-border-radius: 10%;
  -moz-border-radius: 10%;
  -ms-border-radius: 10%;
  -o-border-radius: 10%;
}

.tb-info h3 {
  margin: 0;
}

.tb-rank {
  background-color: #f2f2f2;
  padding: 5px;
  border-radius: 5px;
  margin-right: 10px;
}

.tb-more {
  margin-top: 10px;
}

.tb-more a {
  text-decoration: none;
  color: rgb(161, 22, 22);
}




























