body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  height: 100vh;
/*  background: linear-gradient(to bottom, #a9b276, #ABD9BC);*/
  background: #d3ae6a;



}

.restaurant-img {
  object-fit: cover;
}

.square {
  width: 160px;
  height: 160px;
  border: 3px solid #ccc;
  border-radius: 23px;
  margin-bottom: 5px;
}


.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  vertical-align: center;
}

.logo img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 17px;
}

.text {
  margin: 5px;
  color: #222222;
}

.arrow{
  -webkit-filter: invert(100%);
    filter: invert(100%);
}

a {
  text-decoration: none;
  margin: 5px;
}


@media screen and (min-width: 600px) {
    .square {
      max-width: 480px;
    }
    .logo img {
      max-width: 200px;
    }
  }
  @media screen and (min-width: 960px) {
    .square {
      max-width: 640px;
    }
    .logo img {
      max-width: 250px;
    }
  }