@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #000066;
  color: #6c757d;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 800px;
  width: 100%;
  padding: 40px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  gap: 10px;
}

.mlondiem-logo {
  max-width: 200px;
  margin-bottom: 10px;
}

.client-logo {
  max-width: 100px;
}

h1 {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-section {
  margin-top: 40px;
}

.contact-section h2 {
  font-size: 1.8rem;
  color: #007bff;
  margin-bottom: 10px;
}

.contact-list {
  list-style: none;
  font-size: 1rem;
}

.contact-list li {
  margin-bottom: 10px;
}

a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #0062cc;
}

@media (max-width: 600px) {
  .container {
    padding: 20px;
  }
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
  .mlondiem-logo {
    max-width: 170px;
  }
  .client-logo {
    max-width: 90px;
  }
  .logos {
    gap: 16px;
    margin-bottom: 30px;
  }
}

/*# sourceMappingURL=style.css.map */
