body {
  margin: 0;
  font-family: 'Montserrat', Arial sans-serif;
}

.main {
  width: 90%;
  margin: 0 auto;
}

.firstScreen {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  background: url('./images/1.jpg') center no-repeat;
  background-size: cover;
  text-shadow: #000 1px 0 10px;
}

.firstScreen h1 {
  color: white;
}

.section {
  margin-bottom: 80px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 16px;
}

.gallery-image {
  width: 100%;
  border-radius: 16px;
}

.map-container {
  width: 100%;
  height: 720px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.contact {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgb(0, 128, 0);
}

.red {
  color: rgb(128, 0, 0);
}

.text {
  padding-left: 20px;
  font-size: 22px;
  line-height: 30px;
}

footer {
  padding: 40px;
  background: rgb(23, 59, 71);
}

@media screen and (max-width: 768px) {
  .firstScreen {
    padding: 0 20px;
  }

  .section {
    margin-bottom: 40px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-image {
    border-radius: 8px;
  }
}
