body {
  margin: 30px auto;
  max-width: 1000px;
  font-family: "Calibri";
  font-size: 18px;
  line-height: 1.5;
  padding: 15px 10px;
  text-align: center;
  text-color: #42007f;
  background-image: url('Desert_blurred.png');
  background-color: #FFD087;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%
}

h1 {
  font-size: 45px;
  padding: 5px 0px 0px 0px;
  font-family: "Courier New";
}

h2 {
  padding: 0px 0px 20px 0px;
  font-family: "Georgia";
}

h3 {
  font-family: "Calibri";
  color: #010522;
}

h4 {
  font-family: "Calibri";
  color: #010522;
}

p {
    text-align: left;
}

a {
color: #F5E8BC;
text-decoration: none;
}

a:hover {
  text-shadow: 1px 1px 5px #feffdc;
  font-size: 25px;
}

img {
display: block;
margin: 0px auto;
}

.portfolio-item {
margin-top: 40px;
padding: 40px;
background-color: #cb6052;
border-radius: 20px 20px;
}

.email-item {
margin-top: 20px;
padding: 15px;
background-color: #9c4eb6;
border-radius: 20px 20px;
}

div.a {
  text-align: left;
}


/* 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: 92%;
  width: auto;
  margin-top: 2px;
  padding: 70px;
  color: white;
  font-weight: bold;
  font-size: 45px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  float: right;
  right: 0;
  border-radius: 4px 0 0 4px;
}
  
/* Position the "prev button" to the left */
.prev {
  float: left;
  left: 0;
  border-radius: 4px 0 0 4px;
}

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

/* Caption text */
.text {
  color: #e6d041;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

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

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

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

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

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

