html, 
.logo-fixed {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 72px;
  height: 72px;
}

.logo-fixed img {
  display: block;    
  width: 72px;
  height: 72px;
}

body {
  margin: 0;
  padding: 0;
  height: auto;
  width: 100%;
  font-family: times;
  box-sizing: border-box;
  background-color: aliceblue;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  /* padding: 50px; */
  width: 100vw;
  height: 600px;
}

.image-box {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  overflow: hidden;
  padding: 10px;
  width: 100%;
}

.image-box img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.image-box a {
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.image-box img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.description {
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
  height: 10%;
  padding: 4px;
  text-align: center;
  color: black;
  width: 100%;
  padding: 0px;
}

@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

.table-container {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}