@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:ital,wght@0,100..900;1,100..900&display=swap');

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  color: rgb(106, 106, 106);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 1em;
}

.contact {
  font-family: 'MuseoModerno', sans-serif !important;
}

header {
  background-color: rgb(230, 230, 230);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: gray;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 10px;
}

.title {
  font-family: 'MuseoModerno', sans-serif;
}

.arch {
  font-size: 2em;
}

.name {
  font-size: 1em;
  padding-left: 88px;
  margin-top: -12px;
  font-family: 'MuseoModerno', sans-serif;
}

.contact {
  font-family: 'MuseoModerno', sans-serif;
}

.contact a {
  text-decoration: none;
  color: gray;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-left: 20px;
}

nav ul li a {
  color: gray;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

main {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px 80px;
  margin: 0 auto;
  max-width: 850px;
  width: 100%;
  box-sizing: border-box;
}

.contact-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image {
  max-width: 150%;
  max-height: calc(100vh - 200px);
  object-fit: contain;
}

footer {
  background-color: rgb(230, 230, 230);
  text-align: center;
  color: gray;
  position: fixed;
  width: 100%;
  bottom: 0;
}

.partners {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partners-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.partners-images img {
  width: 40px;
  height: auto;
  margin: 5px;
  transition: transform 0.3s ease;
}

.copyright {
padding-bottom: 5px;
}

.title-link {
  text-decoration: none;
  color: inherit;
}

.title-link:hover {
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 768px) {
  main {
    padding: 60px 20px 60px;
  }

  .contact-image {
    max-height: calc(100vh - 180px);
  }

  .partners-images img {
    width: 30px;
  }
}