*{
    box-sizing: border-box;
}

@media (max-width: 979px) {
    body {
      padding-top: 0px;
    }
  }

.navbar{
    padding-left: 20%;
    padding-right: 20%;
    border-left: none;
    border-right: none;
    border-top: none;
    position: sticky;
    top: 0;
    z-index: 1;
}


h2{
    color: black;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #000;
    line-height: 0.1em;
    margin: 10px 0 20px;
}

h2 span{
    background: #fff;
    padding: 0 10px;
}

#service-row{
    text-align: center;
}

#about-image{
    float:right;
}

/* Code for centered button inspired by https://stackoverflow.com/questions/44767074/how-to-create-buttons-and-make-it-work-in-a-slideshow */
#banner-book-button{
    border-color: white;
    color: white;
}

#banner-btn{
    border-color: white;
    color: white;
}

#banner-btn:hover{
    color: black;
    border-color: black;
    background-color: transparent;
}

/* Code for centered button inspired by https://www.w3schools.com/howto/howto_css_center_button.asp */
.container{
    height: auto;
    position: relative;
    overflow: hidden;
}

#book-button{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Code for image banner inspired by https://www.w3schools.com/howto/howto_css_three_columns.asp */
#image-banner-row .column{
    float: left;
    width: 20%;
    overflow: hidden;
    border: 2px solid white;
    margin-top: 20px;
    margin-bottom: 20px;

}

#image-banner{
    max-height: 400px;
    border: 1px solid #fff;
}

 /* Responsive layout - when the screen is less than 600px wide, make the three columns stack on top of each other instead of next to each other */
 @media screen and (max-width: 600px) {
    .column {
      width: 100%;
    }
  } 

.footer{
    background-color: black;
    bottom: 0;
    text-align: center;
    height: 150px;
    margin-top: 50px;
    width: 100%;
    overflow: hidden;

}

.footer h1{
    color: white;
}


/* Code for the Connect Page Social Medias inspired by https://bootsnipp.com/snippets/or33d */

a{
  text-decoration:none; 
  color: #ff99cc;;

}


.box-part{
    background:#FFF;
    border-radius:0;
    padding:30px 10px;
    margin:30px 0px;
}
.text{
    margin:20px 0px;
}
 
.fa{
    color: #ff99cc;
}

#booking-info{
    width: 100%;
}

#email{
    width: auto;
}

.form-group-full-width{
    width: 100%
}

#submit-form{
    width: 100%;
}

#add-ons{
    text-align: center;

}

#add-on-form{
    margin:0;
}

#subtotal{
    margin-top: 20px;
    width: 100%;
}

#comment-box{
    margin-top: 20px;
}

#price-notice{
    margin: 15px;
    margin-bottom: 20px;
}

#connect-page{
    margin-top: 50px;
}


.footer-text{
    color: white !important;
    font-size: 80%;
}

#footer-col1{
    text-align: left;
    margin-top: 30px;
    margin-left: 30px;
    width: 25%;
}

#footer-col2{
    margin-top: 50px;
    text-align: center;
    width: 50%;

}
   /* Code for rainbow header inspired by 
Code for Rainbow Header inspired by https://www.youtube.com/watch?v=Hvrl93x-P3s*/
#footer-col2 h1{
    text-align: center;
    font-size: 50px;
    letter-spacing: 5px;
    background: repeating-linear-gradient(-45deg, white 30%,
    #ffb3d9 21.4%, #ff80bf 28.56%, #ff0080 52.84%, #ff99cc 50%);
    background-size: 600vw 600vw;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    animation: slide 5s linear infinite forwards;
  }
  @keyframes slide {
    0%{
      background-position-x: 0%;
    }
    100%{
      background-position-x: 600vw;
    }
  } 

#footer-col3{
    text-align: right;
    margin-top: 30px;
    margin-right: 30px;
    width: 25%;

}

.row-footer{
    display: flex;
}

.footer-col{
    flex:1;
}

@media (max-width: 400px) {
    .row-footer {
      display: block;
    }
  }

