body {
  background-image: url('../img/bck_small.webp');
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  body {
    background-position: center;
  }
}

.logo {
  max-width: 292px;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  @media (max-width: 768px) {
    display: block;
  }
}

.info {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 800px;
  width: 100%;
  margin: 0 20px;
    @media (max-width: 768px) {
    margin: 40px auto 0;
  }
}

.desc {
  display: flex;
  flex-direction: column;
  margin-top: 42px
}

.desc a {
  margin-top: 12px;
  font-family: Mulish;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #FFF;
  text-decoration: none;
}

h1 {
  margin: 65px 0 0;
  padding: 0px;
  font-family: "Georgia";
  font-weight: 400;
  font-size: 52px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;

  @media (max-width: 620px) {
    font-size: 42px;
  }

  @media (max-width: 480px) {
    font-size: 36px;
  }
}

.buttons {
  margin-top: 32px;
  display: flex;

  @media (max-width: 620px) {
    flex-direction: column;
  }
}

.button {
  min-width: 277px;
  padding: 15px 0;
  margin: 20px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Mulish";
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
}

.button.booksy {
  color: #fff;
  background-color: #CE9F2E;
}

.button.directions {
  color: #CE9F2E;
  background-color: transparent;
  border: 1px solid#CE9F2E;
}