/* Global Styles */
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
    height: 1500px
  }
  
  /* Header Styles */
  header {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
  }
  
 /* Nav*/
.links {
	background-color: #da668d;
	background-image: linear-gradient(to bottom, #0003, transparent);
	font-size: 15pt;
	font-weight: 300;
}
.links > a {
	color: #ffffff;
	padding: 15px 10px 15px 10px;
	text-align: center;
	text-decoration: none;
	transition: all .5s;
}
.links > a:hover {
	color: #ffffff;
  background-color: #ef9db8;
}

#menu {
	/* position: fixed; */
	left: 0;
	right: 0;
}
.links {
	display: grid;
	grid-template-columns: repeat(var(--items), 1fr);
	position: relative;
}
  
.booking-button {
    /* position:absolute; top:0; right: 15px; */
    /* background-image: linear-gradient(to bottom, #0003, transparent); */
    color: #FCE4EC !important;
    text-decoration: none;
  }

  .title {
    text-align: center;
    font-size: 26pt;
  }
  
  
  /* Main Section Styles */
  section {
    padding: 0px;
  }
  
  h1, h2 {
    text-align: center;
  }


  #name{
    padding-right: 35px;
  }
  
  #leftrow{
    padding-right: 80px;
  }

  #home{
    text-align: center;
    padding: 10px 25% 0 25%;
    height: auto;
  }

  #home2{
    text-align: center;
    padding: 0px 35%;
    height: auto;
    padding-bottom: 100px;
  }

  /* Footer Styles */
  footer {
    background-color: #e184a5;
    padding: 10px 100px;
    text-align: center;
    height: 250px;
    color: #ffffff
  }

  .booking-button-footer{
    border-radius: 20px;
    display: inline-block;
    padding: 20px 30px;
    background-color: #ffffff;
    color: #e184a5;
    text-decoration: none;
  }

  

