#app {
  width: 100%;
  max-width: 1920px;
  min-height: 100vh;
  margin: 0 auto;

  display: grid;
  grid-template-rows: auto 1fr 60px;

}

img {
  width: 100%;
  height: 100%;
  display: block;
}

/*  ======================================================== */




.content {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.main-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.btn-style {
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 400px;
  height: 92px;
  padding: 0 24px;
  font-size: 24px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #f8f6f7;
}

button:hover {
  transition: all 0.3s ease-in-out;
  filter: brightness(0.9);
}



/*  ======================================================== */

footer {
  width: 100%;
  height: 60px;
  background-color: rgb(187,234,254);
}
.footer-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.footer-wrap p {
  font-size: 14px;
  color: rgb(107, 114, 128);
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
}


@media screen and (max-width: 768px) {
  #app {
    grid-template-rows: auto 1fr 140px;
  }
  .main-content {
    flex-direction: column;
  }

  .header-wrap {
    height: 180px;
  }

  .btn-style {
    width: 320px;
  }

  footer {
    width: 100%;
    height: 140px;
    background-color: rgb(187,234,254);
  }

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