* {
  box-sizing: border-box;
}

.landing {
  position: relative;
  height: 100vh;
  text-align: center;
  border-bottom: 1px solid #d2d0d3;
  box-shadow: 0px 0px 15px 1px rgba(221, 221, 221, 1);
}

.landing__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/landing.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.landing__title {
  margin-top: 0;
  margin-bottom: 48px;
  padding-top: 204px;
  color: #d2d0d3;
  font-family: "Satisfy", cursive;
  font-size: 90px;
  text-align: center;
  cursor: default;
}

.landing__button {
  display: inline-block;
  padding: 16px 48px;
  border: 2px solid #1b998b;
  border-radius: 6px;
  background-color: #1b998b;
  color: #f0f0f0;
  font-family: "Raleway", sans;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.landing__button:hover {
  background-color: transparent;
  color: #1b998b;
}
