
   article, aside, details, figcaption, figure, 
   footer, header, hgroup, menu, nav, section {
    display: block;
  }
  body {
    line-height: 1;
  }
  ol, ul {
    list-style: none;
  }
  blockquote, q {
    quotes: none;
  }
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

/*=========================================
    Main Styles
    =========================================*/
    body {
      font-family: copper plate gothic light;
      color: #58483A;
      background-color: #90A74C;
    }

    .content {
      border: 5px solid #58483A;
      background-color: #F9EEC9;
      text-align: center;      

    }


    form {
      border: 5px solid #58483A;
      background-color: #F9EEC9;
      text-align: center;
      }

    html, body, {
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
    }

    nav {
      width: 100%;
      height: 100px;
      background-color: #58483A;
      display: inline-block;
    }


    ul {
      margin: 0;
      list-style-type: none;
      overflow: hidden;
      padding: 0;
      background-color: #58483A;

    }

    li {
      float: left;

    }

    li a {
      list-style: none;
      text-decoration: none;
      font-size: 50px;
      font-family: Showcard gothic;
      color: #F9EEC9;
      line-height: 100px;
      padding: 0 20px;
      display: block;


    }

    li a:hover {
      color: #E4B455;

    }

    h1 {
     font-family: copper plate gothic bold;
    }



  html {
    min-width: 550px;
    position: relative;
  }

  div {
    display: inline-block;
    width: 50%
    max-width: 600px;
  }

  /* Full-width inputs */
  input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    text-align: left;
    display: inline-block;
    box-sizing: border-box;
  }

  /* Set a style for all buttons */
  button {
    background-color: #B4000F;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
  }



  /* Add a hover effect for buttons */
  button:hover {
    opacity: 0.8;
  }

  /* Extra style for the cancel button (red) */
  .cancelbtn {
    text-align: center;
    padding: 10px 18px;
    background-color: #f44336;
  }

  /* Add padding to containers */



  .container {
    padding: 16px;
  }




  /* The "Forgot password" text */
  span.psw {
    float: right;
    padding-top: 16px;
  }

  /* Change styles for span and cancel button on extra small screens */
  @media screen and (max-width: 300px) {
    span.psw {
      display: block;
      float: none;
    }
    .cancelbtn {
      width: 100%;
    }
  }

    .container {
      width: 989px;
      margin: 0 auto;
      display: inline-block;
    }

    .footer {
      text-align: center;
    }

    * {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: relative;
  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;
}


/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* 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}
}

