* {
  box-sizing: border-box;
}
html {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-image: url(sheepbackground.jpg);
}

header {
    font-size: 150px;
    color: #3d1900;
    padding: 20px ;
    margin: 0 auto;
    text-align: center;
    font-family: "Jacquard 12 Charted";
}

h3 {
  color: #3d1900;
  font-family: 'Courier New', Courier, monospace;
}

p {
    font-family: 'Courier New', Courier, monospace;
    font-size: bold;
    color: #3d1900;
  
}
.topnav {
  overflow: hidden;
  background-color: #a08d18;
}
.topnav a {
  float: left;
  display: block;
  color: #3d1900;
  text-align: center;
  padding: 14px 16px;
  font-family: 'Courier New', Courier, monospace;
  text-decoration: none;
}
.topnav a:hover {
  background-color: #d64b34;
  color: #3d1900;
}

.aboutme {
  display: flex;
  flex-direction: row;
  padding: 20px;
}

.footer {
  position:relative;
  width: 100%;
  background-color: #d64b34;
  overflow: hidden;
  bottom: 0;
  margin-top: 10%;
}

.blue {
  background-color: #cfddff;
}

div.gallery {
  float: center;
  width: 40%;
  display: flex;
  flex-direction: column;
  margin: auto;
}

div.gallery img:hover {
  border: 2px solid #d64b34;
}

div.gallery img {
  height: auto;
  width: 90%;
}

.yellow {
  background-color: #f4d68c;
  width: 100%;
}

/* Slideshow container */
.slideshow-container {
  max-width: 700px;
  position: relative;
  margin: auto;
  margin-top: 10%;
  border-radius: 20px;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #3d1900;
  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: #d64b34;
}

/* Caption text */
.text {
  color: #3d1900;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  font-family:'Courier New', Courier, monospace;
}

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

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

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

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

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