
html {
    /* height: 100%; */
    background-image: linear-gradient(to bottom,#70bec8af, #fb98f39d);
 } 

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: rgba(0, 0, 0, 0);
    
}
h1 {
    font-family: "Lancelot", serif;
    /* margin-bottom: -10px; */
    font-size: 6rem;
    line-height: 5rem;
    text-shadow: 5px 5px 5px rgba(128, 128, 128, 0.781);
    /* padding-top: 25px; */
    /* font-weight: 400;
    font-style: normal;
    font-size: 5.5rem; */
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 2.5px solid rgba(0, 0, 0, 0.418);
  /* background-color:aliceblue;  */
}

header {
  /* min-height: 175px; */
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 10px;
  /* border-bottom: 2.5px solid rgba(0, 0, 0, 0.418); */
}

nav a.navbutton {
    margin-left: 20px;
    text-decoration: none;
    
}
.navbutton {
   border: 1px solid black;
   border-radius: 12px;
   padding: 11px 25px;
   color: black;
    background-color: #f5f69dd3;
    box-shadow: 0px 2px 2px black;
    transition-duration: .5s;
    transition-property: background-color;
   /* margin-right: 20px; */
}
.navbutton:hover {
    background-color: #f5f69d;
    
    
}
.mybutton {
    background-color: #f5f69dd3;
    color: black;
    padding: 11px 25px;
    border-radius: 12px;
    box-shadow: 0px 2px 2px black;
    font-size: 1.125rem;
    
}
.mybutton:hover {
    background-color: #f5f69d;
    transition-duration: .5s;
}
a.mybutton {
    display: inline-block;
    margin-top: 25px;
    margin-bottom: 25px;
    text-decoration: none;
    text-align: center;
}
.headline {
    max-width: 1280px;
    padding-top: 35px;
    padding-bottom: 35px;
    margin: auto;
}
/* .headline h1 {
    font-size: 3.5rem;
    line-height: 4rem;
    text-align: center;
}  */

.background-fade {
    background-image: url('images/cookiesback.jpg');
    background-size: cover;
    animation: fade-in;
    animation-duration: 2.5s;
    transition: ease-in-out;
    border-bottom: 5px solid #fb98f3;
    border-top: 5px solid #fb98f3;
    margin-top: 25px;
}

@keyframes fade-in {
    from {     
        opacity: 0;  
    }

    to {
        opacity: 1;
    }
}

.card-title {
    font-size: 2.5rem;
    line-height: 3rem;
    text-shadow: 2px 2px 2px silver;
    font-weight: bold;
}

.card-body {
    font-size: 1.5rem;   
}
.carousel-inner .carousel-item img {
    max-height: 700px;
    background-size: cover;
} 

.carousel-inner .carousel-item .carousel-caption {
    background-color: aliceblue;
    color:black;
    max-width: 450px;
    margin:auto;
    border-radius: 5px;
}
i {
    font-size: 3rem;
}
a i {
    color: black;
}
a i:hover {
 color: rgba(0, 0, 0, 0.596);  
}
.footer {
    display: flex;
    background-color: #a48790;
    min-height: 50px;
    /* text-align: center; */
    color: aliceblue;
    /* font-size: smaller; */
    padding: 20px 50px 10px;
}
.footer a {
    color:aliceblue;
}
.lead a.email{
    color: black;
    text-decoration: none;
}
.lead a.email:hover {
    text-decoration: underline;
}

.carousel-inner .carousel-item .container {
    text-align: center;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.3), -5px -5px 10px rgba(255,255,255,0.5);
    
}

.newline {
    display: block;
    margin-bottom: 10px;
}
/* Tablet View */
@media (max-width: 768px) {
    
    .footer {
        display: block;
        text-align: center;
    }
        header {
        display: block;
        text-align: center;
        padding-bottom: 0px;
        }
        /* nav {
        background-color: #89bd88;
        } */
        nav a {
            display: block;
        }
            nav a.navbutton {
            margin-left: 0px;  
        }
       .logo {
        padding-bottom: 15px;
       }
       .header-container {
        border-bottom: 0px;
       }
}