.banner-copy-ip {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  padding: 4px 0px;
  margin-top: 0.8em;
  cursor: pointer;
  display: inline-block;
  width: 50%;
  font-size: 12px;
  box-shadow: rgba(255, 255, 255, .7) 0 1px 0 0 inset;
  box-sizing: border-box;
}

.banner-copy-ip:hover {
  background: rgba(128, 128, 128, 0.15);
}

.banner-copy-ip:active, .banner-copy-ip.active {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(128, 128, 128, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.banner-copy-ip .ip {
  color: white;
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
}
section {
  margin: 1.5em 0 1em 0;
}
 
/* Button Styles */
.button {
  border-radius: 3px;
  box-shadow: rgba(255, 255, 255, .7) 0 1px 0 0 inset;
  box-sizing: border-box;
  cursor: pointer;
  margin: 0;
  outline: none;
}

.button:active {
  border: 1px solid #333333;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.container h2 {
  text-align: center;
  margin-bottom: 0; 
  color: #777777; 
}

.container h4 {
  text-align: center;
  margin-bottom: 10px;
  color: #888888; 
  font-style: italic;
  margin-top: 0;
}

/* Media Queries */
@media (max-width: 900px) {
  .thumbnailContainer {
    grid-template-columns: repeat(3, 1fr);
  }
  .banner-text {
    margin-left: auto;
    margin-right: auto;
  }
   
  .banner-text span:not(.ip),
  .banner-text img {
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
  }
  .banner-copy-ip {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

/* Banner styles */
.banner {
  display: flex;
  justify-content: center;
  height: 17em;
  overflow: hidden;
  width: 100%;
}

.banner img {
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.banner-text-container {
  width: 900px;
  position: absolute;
  max-width: 900px;
  max-width: 100%;
}

.banner-text {
  position: relative;
  display: flex;
  flex-direction: column;
  width: fit-content;
}

.banner-text img {
  height: 3.5em;
  margin-top: 1em;
}

.banner-text span.slogan {
  margin-top: 0.5em;
  font-weight: 400;
  color: white;
}

.banner-text span.ip {
  margin-top: 0.5em;
  font-size: 1.4em;
  color: white;
}