
body, html {
  height: 100%;
  margin: 0;
}

.bg {
  /* The image used */
  background-image: url("background.jpg");

  /* Full height */
  height: 100%; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.50);
  background-blend-mode: multiply;
  background-attachment: fixed;
}

.logo {
    width: 200px;
    margin: 20px;
}

.caption {
    position: relative;
    /* right: 20px; */
    top: 30%;
    width: 98%;
    text-align: center;
    color: #fff;
    padding: 1%;
	margin: auto;
    /* background-color: rgba(0, 0, 0, 0.3); */
}

.glf-button{
margin: 5% 1% 1% 1% !important;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(320px, 1fr));
  grid-gap: 20px;
  justify-content: center;
  grid-auto-rows: minmax(180px, auto);
  margin: 20px auto;
  max-width: 1080px;
  font-family: sans-serif;
}

.card {
  display: grid;
  grid-template-rows: max-content auto 1fr;
  background-color: #000000aa;
  color: #ffffff;
  padding: 20px 20px;
  text-align: center;
}

.restInfoSection {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(320px, 1fr));
  grid-gap: 20px;
  justify-content: center;
  grid-auto-rows: minmax(50px, auto);
  margin: 20px auto;
  max-width: 540px;
  text-align: center;
}

.restInfoGrid {
  display: grid;
  grid-template-rows: max-content auto 1fr;
  color: #ffffff;
}

.card img {
  object-fit: cover;
  width: 100%;
  /*height: 100%;*/
}

.restTitle {
  font-size: 36px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.restLocation {
  font-size: 18px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.offerNo {
  font-size: 24px;
  padding-bottom: 10px;
  margin: 0 auto;
  border-bottom: 4px dotted white;
  width: fit-content;
}

.offerName {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 0px;
}

.offerContent {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 0px;
  line-height: 1.4;
  color: #cccccc;
}

.offerNoteHeading {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 0px;
  color: #ff0000aa;
}

.offerNote {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 0px;
  color: #cccccc;
}