body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  /* background: linear-gradient(180deg, rgb(255, 255, 255), rgb(110, 191, 161)); */
  overflow: hidden;
}
.footer{
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgb(255, 255, 255), rgb(110, 191, 161));
}
p {
  position: fixed;
  bottom: 10px;
  width: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

p a {
  margin: 0 10px;
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 100px;

}

.box div {
  font-weight: bold;
  font-size: 30px;
}

@media screen and (max-width: 1100px) {

  html,
  body {
    /* background: linear-gradient(360deg, rgb(255, 255, 255), rgb(110, 191, 161)); */

  }
  .img1 {
    width: 200px !important;
  }
  .box div {
    font-weight: bold;
    font-size: 12px;
  }
  p {
    flex-direction: column;
  }

  p a {
    color: #222 !important;
    font-size: 12px;
    margin: 0 0 10px;
  }
}