.container {
  margin: 0 auto;
  text-align: center;
}
table {
      border-collapse: collapse;
      width: 100%;
    }
    th, td {
      text-align: left;
      padding: 8px;
    }
    th {
      background-color: #4CAF50;
      color: white;
    }
    tr:nth-child(even) {
      background-color: #f2f2f2;
    }
h1 {
  font-size: 30px;
  margin-top: 10px;
  text-align: center;
  color:blue;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 50px;
  margin-top: 50px;
}
. displaypoint {
	margin-left:0px;
	width:100%;
	height:100%;
	padding:20px;
	margin: 0 auto;
	font-size: 18px;
	background-color:white;
	font-family=Arial: Helvetica, sans-serif, Times-New-Romans;
	z-index:9;
}
.category-card {
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
}

.category-card:hover {
  transform: scale(1.1);
}

.category-card h2 {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 25px;
  margin: 0;
  padding: 5px;
}

.category-card img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease-in-out;
}

.category-card:hover img {
  opacity: 0.8;
}
.sidenav {
  height: 80%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: white; /*#111;*/
  color:green;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  border-radius: 20px;
  font-family=Arial: Helvetica, sans-serif, Times-New-Romans;
  font-weight:bold;
  font-size:18px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  /*color: #818181;*/
  color:green;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #58D68D;
  /*color: #f1f1f1;*/
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

