/* 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 */

/* Page Styling + Containers */
body        {background-color: #CCD5FF;} 

div         {padding: .5%;
             align-content: center;
             overflow: auto;
             border-radius: 25px;
             position: relative;}
.cnt        {background-color: #B5D6B2;
             border-style: solid;
             border-color: #08605F;}
.col        {display: flex;
             flex-direction: column;
             gap: 10px;
             margin: 2%;}
.drkcnt     {background-color: #08605F;
             border-style: solid;
             border-color: #283D3B;}
.menu       {width: 40px;
             background-color: #08605F;
             margin: .5%;
             overflow:visible;
             border-style: solid;
             border-color: #283D3B;}
.minicol    {display: flex;
             flex-direction: column;
             gap: 10px;
             width: 50%;}
.minirow    {display: flex;
             flex-direction: row;
             gap: 10px;
             width: 50%;}
.nav        {display: flex;
             flex-direction: row;
             background-color: #08605F;
             gap: 5px;
             border-style: none;            
             justify-content: center;
             overflow: visible;
             padding: 0;
             margin: 3%;}          
.row        {display: flex;
             flex-direction: row;
             gap: 10px;
             border-style: none;}


/* Text */

h1     {text-align: center;
        color: #08605F;
        text-shadow: 2px 2px 1px #283D3B;
        font-family: Impact, sans-serif;
        margin:0;
        font-size: 300%;}
h2     {text-align: center;
        color: #08605F;
        font-family: Impact, sans-serif;}
h3     {
        text-align: center;
        color: #08605F;
        font-family: Impact, sans-serif;}
h4     {
        margin: 1%;
        color: #08605F;
        font-family: century, sans-serif;
        font-style: italic;
        font-weight: bold;
        text-align: right;
       }
h5     {
        color: #08605F;
        font-family: century, sans-serif;
        font-style: italic;
        text-align:center;}       
h6     {
        margin: 2%;
        color: #08605F;
        font-family: century, sans-serif;
        font-style: italic;
        text-align: right;
       }
li     {color: #08605F;
        font-family: century, sans-serif;
       }
p, .tit, .prv, .nxt {
        text-align: center;
        color: #08605F;
        font-family: century, sans-serif;}
.drkh {color: #B5D6B2;}
.drkp {color: #B5D6B2;}


/* Elements */

img    {max-width: 95%;
        border-radius: 25px;
        max-height: 85vh;}
img:hover
       {opacity: .75;}
.small{width:60%;}


        
         
/* Buttons + Links */
a      {color: #08605F;
        text-decoration-line: none;}
.btnlnk:hover     
       {color: #B5D6B2;
        text-decoration-line: none;}
button {background-color:  #B5D6B2;
        border-style: solid;
        border-color: #08605F;
        border-radius:25px;}
button:hover
       {background-color: #08605F;
        border-color: #08605F;}
.drkbtn{background-color: #08605F;
        border-radius:25px;}
.drkbtn:hover
        {background-color: #B5D6B2;}
.drklnk{color: #B5D6B2;
        text-decoration-line: none;}
.drklnk:hover
       {color: #08605F;
        text-decoration-line: none;}

         
/* Dropdown Menu */
.drpdwn {
  position: relative;
  align-content:center;
  Overflow: visible;
  padding:0;}
.drpdwncnt {
  display: none;
  position: absolute;
  background-color: transparent;
  filter: drop-shadow(1px 1px 1px #08605F);
  flex-direction: column;
  overflow: visible;
  padding: 0;
  z-index: 1;}
.drpdwncntcnt {
  display: flex;
  position: absolute;
  background-color: transparent;
  filter: drop-shadow(1px 1px 1px #08605F);
  flex-direction: column;
  overflow: visible;}
.drpdwn:hover .drpdwncnt {
  display: block;}

/* Slideshow */

.sscnt {
  position: relative;
  margin: 1%;
}

.slide {display: none;
        text-align: center;
}
       

/*  Next & previous buttons */
.prv, .nxt {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: auto;
  padding:16px;
  font-weight: bold;
  transition: 0.6s ease;
  user-select: none;
  text-shadow: 2px 2px 4px #283D3B;
}

/* Position the "next button" to the right */
.nxt {
  right: 1%;
}


/* Title */
.tit {
  padding: 8px 12px;
  position: absolute;
  top: .5%;
  left: 2%;
  border: solid #08605F;
  border-radius: 50px;
  background-color: rgba(181, 214, 178, 0.7);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #0c9290;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

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

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



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

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prv, .nxt,.tit {font-size: 11px}
}






         
         
         
         
         
         
         
         
         
         
         
         
         
         
         