* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-size: 22px;
  font-family: "CabritoContrast-ExtMedium";
}
@font-face {
  font-family: "CabritoContrast-ExtMedium";
  src: url("../fonts/CabritoContrast-ExtMedium.woff2") format("woff2"),
    url("../fonts/CabritoContrast-ExtMedium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.backgroung_img {
  background-image: url(../img/thehanfordhotel.jpg);
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}
.backgroung_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.splash_page h1 {
  text-transform: none;
  font-variant: normal;
  font-weight: 400;
  text-align: center;
  font-family: "CabritoContrast-ExtMedium";
  margin: 30px 0px;
  letter-spacing: 2px;
  font-size: 42px;
}
.reservation_btn {
  margin-top: 13px;
  background-color: #2d56a5;
  color: white;
  text-decoration: none;
  font-family: "CabritoContrast-ExtMedium";
  font-size: 18px;
  font-weight: 400;
  padding: 10px 15px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}
.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.phone-no {
  color: #fff;
}
.phone-no:hover {
  text-decoration: none;
  color: #fff;
}
.website-link {
  text-decoration: underline;
  color: #fff;
}
.website-link:hover, .website-link:active, .website-link:focus  {
  color: #fff;
}
.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content-1  .third-line {
  margin: 0;
}
.content-2  .third-line {
  margin: 0;
}


@media only screen and (max-width: 767px) {
  .splash_page h1 {
    font-size: 36px;
  }
  .backgroung_img {
    background-position: top;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .splash_page h1 {
    font-size: 40px;
  }
  .backgroung_img {
    background-position: top;
  }
}
a.reservation_btn:focus,
a.reservation_btn:active,
a.reservation_btn:hover {
  color: #fff;
  text-decoration: none;
}
