* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #0f0f0f;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 80px;
}

.images {
  display: flex;
  justify-content: center;
  height: auto;
  width: 80%;
  gap: 20px;
}

.single-image {
  height: 400px;
  width: auto;
  object-fit: cover;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

h1 {
  font-size: 5rem;
  color: white;
  font-family: Lato;
}

.logo {
  width: auto;
  height: 120px;
}
.number-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 5px;
}
p {
  color: white;
  font-family: Lato;
  font-size: 1.8rem;
  text-decoration: none;
}
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

@media only screen and (max-width: 1700px) {
  .single-image {
    height: 300px;
  }
  .logo {
    height: 100px;
  }
  h1 {
    font-size: 4rem;
  }
  p {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 1280px) {
  .single-image {
    height: 200px;
  }
  .logo {
    height: 80px;
  }
  h1 {
    font-size: 3rem;
  }
  .number-email {
    flex-direction: column;
  }
}

@media only screen and (max-width: 870px) {
  .single-image {
    height: 150px;
  }
  .logo {
    height: 60px;
  }
  p {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 768px) {
  .single-image {
    height: 100px;
  }
  a[href^="tel"] {
    pointer-events: auto;
  }
}

@media only screen and (max-width: 480px) {
  .single-image {
    height: 90px;
  }
  .wrapper {
    gap: 40px;
  }
}
