/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: #00ff00;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  text-align: center;
  font-size: 16px;
}

h1 {
  background-color: black;
  color: #00ff00;
  font-family: "Audiowide",Verdana;
  text-align: center;
  font-size: 28px;
}

h2 {
  background-color: black;
  color: #00ff00;
  font-family: "Audiowide",Verdana;
  text-align: center;
  font-size: 24px;
}

h3 {
  background-color: black;
  color: #00ff00;
  font-family: "Audiowide",Verdana;
  text-align: center;
  font-size: 20px;
}

warning {
  background-color: #00ff00;
  color: black;
  font-family: "Audiowide",Verdana;
  text-align: center;
  font-size: 24px;
}

shake:hover {
  font-size: 40px;
  /* Ensure the element behaves as a block for transformation */
  display: inline-block;
  
  animation: shake 0.075s linear infinite;/* Apply the animation */
  animation-direction: alternate; /* Plays forward, then backward */
}

/* Define the animation sequence */
@keyframes shake {
  from {
    transform: rotate(-30deg); /* Start at 0 degrees */
  }
  to {
    transform: rotate(30deg); /* End at 360 degrees (a full rotation) */
  }
}

p {
  background-color: black;
  color: #00ff00;
  font-family: "Audiowide",Verdana;
  text-align: center;
  font-size: 16px;
}

ul {
  padding-left: 0;
  list-style-position: inside;
}

/*----------------------------------------------Silly Links----------------------------------*/

a:link {
  color: #00ff00;
  text-decoration: none;
  font-weight: bold;
}

/* visited link */
a:visited {
  color: #00ff00;
  text-decoration: none;
  font-weight: bold;
}

/* mouse over link */
a:hover {
  color: hotpink;
  text-decoration: underline;
  font-size: 30px;
  /* Ensure the element behaves as a block for transformation */
  display: inline-block;
  font-weight: bold;
  
  /* Apply the animation */
  animation: spin 1s linear infinite;
}

/* Define the animation sequence */
@keyframes spin {
  from {
    transform: rotate(0deg); /* Start at 0 degrees */
  }
  to {
    transform: rotate(360deg); /* End at 360 degrees (a full rotation) */
  }
}

/* selected link */
a:active {
  color: lightblue;
  text-decoration: underline;
  font-weight: bold;
}

/*----------------------------------------------Bottom Right Allign Images----------------------------------*/

.container {
    position: relative; /* Essential: sets the positioning context for the child image */
    height: 300px;    /* Example: define a height for the container to see the effect */
    width: 100%;        /* Example: define a width */
    /* Add any other container styles here (e.g., border, background color) */
}

.bottom-right-image {
    position: absolute; /* Positions the image relative to the container */
    bottom: 0;          /* Aligns the bottom edge of the image with the bottom edge of the container */
    right: 0;           /* Aligns the right edge of the image with the right edge of the container */
    /* Optional: Add a small margin for spacing if needed, e.g., margin: 10px; */
}

/*----------------------------------------------Image Slideshow----------------------------------*/


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 700px;
  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: -22px;
  padding: 16px;
  color: #00ff00;
  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: -48px;
  border-radius: 3px 0 0 3px;
}

/* Position the "prev button" to the right */
.prev {
  left: -48px;
  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: #00ff00;
  background-color: rgba(0,0,0,0.7);
  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: #00ff00;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}