

.p1 {
  color:teal; font-family: "Times New Roman", Times, serif; font-size:48px;
}

.p2 {
  font-family: Arial, Helvetica, sans-serif;
}

.p3 {
  font-family: "Lucida Console", "Courier New", monospace;
}


#ImSticky {
  position: fixed;
  top: 20px;
  right: 0.5px;
  size:400px
}

#ImSticky2 {
  position: fixed;
  top: 1px;
  right: 200px;
  size:400px
}

#ImSticky3 {
  position: fixed;
  bottom: 5px;
  left: 5px;
  size:400px
}


/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  width: 100%;
  height: 160px;
  background-color: rgb(48, 9, 23);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */

  /* Fade the blur out at the bottom edge */
  mask-image: linear-gradient(to bottom, rgb(104, 52, 83) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgb(114, 14, 59) 70%, transparent 100%);
  /*padding: 20px 10px;*/
  
  
}

/* Style the header links */
.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 30px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 46px;
  font-weight: bold;
  font-family:'Times New Roman', Times, serif;
  font-style:italic;
  color:rgb(13, 192, 192);
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: rgb(13, 192, 192);
  color: #521010;;
}

/* Style the active/current link*/
.header a.active {
  background-color: rgb(181, 114, 114);
  color: teal;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}


/* LETTER -----------------------------*/

* {box-sizing:border-box}

.parent-container {
  position: relative; /* Acts as the anchor/boundary */
  width: 500px;
  height: 500px;
}

/* Slideshow container */
.slideshow-container {
  top: 80px;
  left: 100px;
  max-width: 500px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -28px;
  padding: 16px;
  color: teal;
  font-weight: italic;
  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: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 3px;
  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: 5px;
  width: 5px;
  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 {
  animation-name: fade;
  animation-duration: 0.5s;
}

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


