body {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  font-family: "Gill Sans", sans-serif;
}

/* main content layout padding/margin */
main.content {
  padding: 0;
  margin: 0;
}

/* box */
.content-box-home {
  max-width: 900px;         
  margin: 2rem auto;        
  padding: 2rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.85); 
  border-radius: 0.15rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
}

/* text style */
.content-box-home h2,
.content-box-home h1,
.content-box-home p {
  color: #444;
  line-height: 1.6;
  font-family: "Gill Sans", sans-serif;
  font-style: thin;
}


.logos-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem 0;
  background: transparent; 
  border-radius: 0.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.logos-container img {
  height: 80px; 
  object-fit: contain;
}