body, html {
  background: url('https://assets.petpal.asia/wp-content/uploads/2024/08/14123036/pattern-1.png') center/cover no-repeat;
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-family: 'Nunito', sans-serif;
}

.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.content {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5em;
}

.left__panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.right__panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.left__panel img {
  max-width: 100%;
}

.right__panel img {
  max-width: 100%;
}

.footer {
  margin-top: -95px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #4C4DAF;
  text-align: center;
}

.footer div {
  margin: 10px;
}

.footer div a {
  text-decoration: none;
}

.footer div h1 {
  font-weight: 800;
  font-size: 2em;
}

.footer div a:nth-child(1) {
  margin-right: 10px;
}

@media (max-width: 1400px) {
  .left__panel img {
    max-width: 90%;
  }

  .right__panel img {
    max-width: 90%;
  }

  .footer div a img {
    max-width: 40%;
  }

  .footer div h1 {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .content {
    margin-top: 30px;
    flex-direction: column;
    gap: 3em;
  }

  .left__panel img {
    max-width: 90%;
  }

  .right__panel img {
    max-width: 70%;
  }

  .footer {
    margin-top: -100px;
    flex-direction: column;
    padding: 5px;
  }

  .footer div {
    margin: 0px;
  }

  .footer div a img {
    max-width: 40%;
    height: auto;
  }

  .footer div h1 {
    font-size: 1.2em;
  }
}