 /* Body */
body{
  font-family: 'Roboto Slab', serif;
  font-family: 'Cormorant Garamond', serif;
  padding: 0;
  margin:0;
  background-color: #f4f4f4;
}

.container{
  width: 70%;
  margin: auto;
  overflow: hidden;
  padding-top: 25px;
  padding-bottom: 50px;
}

ul{
  margin: 0;
  padding: 0;
}

/* Header */
header{
  background: #000000;
  color: #ffffff;
  padding-top: 30px;
  min-height: 70px;
  border-bottom: #ffd1dc 10px solid;
}

header a{
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

header li{
  float: left;
  display: inline;
  padding: 0 7px 0 7px;
}

header #branding{
  float: left;
}

header #branding h1{
  margin: 0;
}

header nav{
  float: right;
  margin-top: 10px;
}

header .highlight, header .current a{
  color: #aec6cf;
  font-weight: bold;
}

header a:hover{
  color: #aec6cf;
  font-weight: bold;
}

.row1 {
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
}

.row {
    text-align: left;
}

/* Showcase */

#showcase {
  min-height:500px;
  background: #aec6cf;
  background-size: 500px;
  text-align: center;
  color: #000000;
}

#showcase1{
    padding-top: 0px;
    padding-bottom: 0px;
    min-height: 500px;
    background: #aec6cf;
    background-size: 500px;
    text-align: center;
    color: #000000;
    max-width: 100%;
    height: auto;
    width: 100%;
    
}

#showcase h1{
  font-size: 45px;
  margin-bottom: 10px;
}

#showcase p{
  font-size: 20px;
}

#showcase1 h2{
    font-family: 'Cormorant Garamond', serif;
    padding-bottom: 50px;
    margin-top: 40px;
}

/* Newsletter */

#newsletter{
  padding: 5px;
  color: #ffffff;
  background: #353637;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  max-height: 750px;
  position: relative;
  margin: auto;
  padding-bottom: 20px
  
}

/* Number text (1/3 etc) */
.numbertext {
  color: #000000;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fadeout;
  -webkit-animation-duration: 5s;
  animation-name: fadein;
  animation-duration: 5s;
}

@-webkit-keyframes fadeout {
  from {opacity: 1.0;} 
  to {opacity: 0.3;}
}

@-webkit-keyframes fadein {
  from {opacity: 0.3;} 
  to {opacity: 1.0;}
}

/* footer */

footer{
  padding: 40px;
  margin-top: 0px;
  color: #aec6cf;
  background-color: #000000;
  text-align: center;
  border-top: #ffd1dc 10px solid;
}

/* responsiveness */

@media(max-width: 768px){
  header #branding,
  header nav,
  header nav li,
  #newsletter h1,
  #newsletter form,
  #boxes .box 
    {
    float: center;
    text-align: center;
    width: 100%;
  }

  header{
    padding-bottom: 20px;
  }

  #showcase h1{
    margin-top: 40px;
  }
  @media(max-width: 768px){ #showcase1 img {
        width:83.33%;
    } }


  #newsletter button {
    display: block;
    width: 100%;
  }

  #newsletter form input[type="email"] {
    width: 100%;
    margin-bottom: 5px;
  }
    
}