
/*text*/
header{
    font-size: x-large;
    color: blue;
    font-weight: 200;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    text-decoration: wavy;
}

h1{
    font-size: 200;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

h2 {
    font-size: large;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h3{
    text-align: center;
    font-size: large;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

p{
    font-size: medium;
    font-weight: 200;
    color: maroon;
}
ol{
    list-style-type: none;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: auto;
    background-color: azure;
  }
  li{display: inline;}

/*nav bar and footer*/
ul{
    list-style-type: none;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: auto;
    background-color: black;
  }
  li{display: inline;}

  nav{
    color: yellow;
}

footer{
    color: yellow;
}

/*links*/
  a:link {
    color: white;
    text-decoration: none;
    background-color: hsla(0,0%, 42%, 0.4);
    }

  a:visited {
    color: white;
    text-decoration: none;
    background-color: hsla(0,0%, 42%, 0.4);
    }

  /* active or hovered link */
  a:hover{
  color: hsla(0, 0%, 100%, 0.7);
  background-color: hsl(0,0%,42%,0.7);
  }

  a:active {
  color: hsla(0, 0%, 100%, 0.7);
  background-color: hsl(0,0%,42%,0.7);
  }

/*table*/
th, td {
    border: 2px solid;
    border-collapse: separate;
    padding: .2em .7em;
}

figure {
	margin-top: .5em;
	margin-left: 0;
}

table{
    float: center;
}

/*form*/

form{
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px;
    display: block;
}
input {
    font-style: italic;

}

/*images*/
img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

figcaption {
    font-size: small;
    text-align: center;
}

/*background:*/


body {
    background-color: yellow;
}

/*image carosel*/
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Make the images invisible by default */
.Containers {
  display: none;
}

/* forward & Back buttons */
.Back, .forward {
  cursor: pointer;
  position: absolute;
  top: 48%;
  width: auto;
  margin-top: -23px;
  padding: 17px;
  color: grey;
  font-weight: bold;
  font-size: 19px;
  transition: 0.4s ease;
  border-radius: 0 5px 5px 0;
  user-select: none;
}

/* Place the "forward button" to the right */
.forward {
  right: 0;
  border-radius: 4px 0 0 4px;
}

/*when the user hovers,add a black background with some little opacity */
.Back:hover, .forward:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption Info */
.info {
  color: #e3e3e3;
  font-size: 16px;
  padding: 10px 14px;
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

/* Content */
.info {
  color: #f2f2f3;
  font-size: 14px;
  padding: 10px 14px;
  position: absolute;
  top: 0;
}

/* The circles or bullets indicators */
.dots {
  cursor: pointer;
  height: 16px;
  width: 16px;
  margin: 0 3px;
  background: linear-gradient(92.18deg, #a049e9 -25.78%, #6643db 123.02%);
  opacity: 0.3;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}

.enable, .dots:hover {
  background: linear-gradient(92.18deg, #a049e9 -25.78%, #6643db 123.02%);
  opacity: 1;
}

/* Faint animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.4s;
  animation-name: fade;
  animation-duration: 1.4s;
}

@-webkit-keyframes fade {
  from {opacity: .5}
  to {opacity: 2}
}

@keyframes fade {
  from {opacity: .5}
  to {opacity: 2}
}