/*
Author:  Leonard Garcia
All Rights Reserved
Created on 5/4/2020
*/
body {
    background-color: black;
    color:            darkgreen;
    margin:           0;
}
h1 {
    font-size:  2em;
}

* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {
    vertical-align: middle;
    width: 25%; height: 25%; 
}
#as, #mj, #len {
    width: 10%; height: 10%;
}
#mj, #len {
    position: relative;
    top:      -10px;
}
 

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  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 */
.prev {
  position: absolute;
  top:  70px;
  left: -60px;
  border-radius: 3px 0 0 3px;
}

.next {
  position: absolute;
  top:  70px;
  left: 270px;
  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: darkcyan;
  opacity:          .8;
}

/* Caption text */
.text {
  color: darkgreen;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  top: 200px;
  left: -375px;
  width: 100%;
  text-align: center;
}

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

.dotCon {
    text-align:left;
    margin-left: 340px;
    margin-bottom: 5px;
}
/* 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: #717171;
}

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

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

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

/*

@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

*/

/* FOR SMARTPHONE ***********************SMARTPHONE*********************/
/*********************************************************************
**********************************************************************/
@media only screen and (max-width: 414px) and (min-width: 280px) {
    #as {
        width: 18%; height: 15%;
    }
    #mj, #len {
        width: 18%; height: 15%;
    }
    #mj, #len {
        position: relative;
        top:      -5px;
    }
    
    .slideshow-container {
        position:   relative;
        left:       100px;
        margin:     auto;
    }
    
    .prev {
        position: absolute;
        top:  40px;
        left: -60px;
    }

    .next {
        position: absolute;
        top:  40px;
        left: 120px;
    }    
    
    /* Caption text */
    .text {
        color: darkgreen;
        font-size: 15px;
        padding: 8px 12px;
        position: relative;
        top:    35px;
        left:   -180px;
        width: 100%;
        text-align: center;
    }
    
    .dotCon {
        text-align:left;
        margin-left:    50px;
        margin-bottom:   5px;
    }
    
}