/* Desktop - 1 */
body {
/*
position: relative;
width: 1440px;
height: 1024px;
*/
/* grad */
background: #251915;    
    }
.moosephoto p {
    
    
    text-align: center;
    padding: 2px;
    font-size:16px;
    color: #E09F62;
    
}

.moosephoto {
    width: 100%;
    max-width: 500px;
  margin: auto;
}

.button2 {
     background-color: sandybrown; /* Green */
  border: none;
  color: #E09F62;
  padding: 15px 32px;
  text-align: center;
  
  display: inline-block;
  font-size: 16px;
    border-radius:4px;
    font-family: -apple-system, system-ui, Verdana, sans-serif;
    font-style: normal;
    overflow:hidden;
    
}

.button1:hover {
  background-color: green; /* Green */
}

.button_center {
    display: flex;
  justify-content: center;
  align-items: center;
   text-decoration: none;
    padding: 20px;
}

p {
/*    
position: absolute;
width: 832px;
height: 172px;
left: 307px;
top: 300px;
*/
    padding: 20px;
    padding-left: 50px;
    padding-right:50px;
    
font-family: -apple-system, system-ui, Verdana, sans-serif;
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 43px;
text-align: center;
text-decoration: none;
color: #E09F62;
}

h1 {
    /* Moose’ Dog Care and Boarding */
/*
position: absolute;
width: 850px;
height: 77px;
left: 298px;
top: 158px;
*/
    align-content: center;
    text-align: center;
    
font-family: -apple-system, system-ui, Verdana, sans-serif;
font-style: normal;
font-weight: bold;
font-size: 64px;
line-height: 77px;
/* identical to box height */

color: #e09f62;
}

/*
.hero span{
    padding: 2px;
    background: white;
    border-radius: 4px;
}
*/
/* Style the header with a grey background and some padding */
.header {
    font-family: -apple-system, system-ui, Verdana, sans-serif;
    font-style: normal;
  overflow: hidden;

  padding: 20px 10px;
}
.footer {
    font-family: -apple-system, system-ui, Verdana, sans-serif;
    font-style: normal;
    text-align: center;
    font-size: 8px;
    color:white;
}

/* Style the header links */
.header a {
  float: left;
  color: #E09F62;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 20px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color:#E09F62;
}

/* Style the active/current link*/
.header a.active {
  background-color: sandybrown;
  color: white;
}

/* Float the link section to the right */
.header-right {
    padding-top: 25px;
  float: right;
}

/* Add media queries for responsiveness - when the screen is 600px wide or less, stack the links on top of each other */ 
@media screen and (max-width: 600px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
    .moosephoto {
        display:block;
        float:left;
        max-width: 100%;
    }
    
}





/*start slideshow*/


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 15px;
  padding: 25px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
    font-family: -apple-system, system-ui, Verdana, sans-serif;
    font-style: normal;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
    font-family: -apple-system, system-ui, Verdana, sans-serif;
    font-style: normal;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}