* {
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
}
html {
    background-image: url("/images/backblue.jpg");
    background-attachment: fixed;
    background-position: 50px;
    background-repeat: repeat;
    justify-content: center;
}

header {
    border-bottom: 5px solid #FD5D28;
    /* background-color: rgb(62, 65, 137); */
    margin-bottom: 10px;
}
header img {
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
    margin-left: auto;
    margin-right:auto;
    width: 300px;
}
img {
    display: block;
    margin-left: auto;
    margin-right:auto;
    max-width: 90%;
}
/*--------------------------------------------*/
/* nav styles     */
/*--------------------------------------------*/
nav {
	font-family: verdana, sans-serif;
    
}
nav ul li a:link, nav ul li a:visited {
	color: white;
    background-color: #FD5D28;
}
nav ul li a:focus, nav ul li a:hover, nav ul li a:active {
	color: #FD5D28;
    background-color: white;
}
nav ul li a:hover {
    transform: scale(1.15);
}
nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
}

nav ul li {
    font-size: .8em;
	text-transform: uppercase;
    text-align: center;
	letter-spacing: .2em;
	flex: 1 1 200px;
    max-width: 200px;
}
nav ul li a { 	
  display: block; 	
  border: 1px solid; 
  padding: .5em 1em; 	
  border-radius: .5em; 
  margin: .5em;
  text-decoration: none;
}
.topnav {
    display: none;
}

/*--------------------------------------------*/
/* text styles     */
/*--------------------------------------------*/
h1 {
    visibility: hidden;
    font-size: 0.1rem;
}
h2 {
    font-family: verdana, sans-serif;
    color:#F9AB33;
    text-align: center;
    font-size: 3rem;
}

h3 {
    font-family: verdana, sans-serif;
    color:#FD5D28;
    text-align: center;
}
ul {
    font-family: verdana, sans-serif;
    color:#F9AB33;
    text-align: center;
    list-style-type: none;
    font-size: 1.4rem;
}
p {
    color: white;
    font-size: 1.4rem;
    text-align: center;
}
a {
    text-decoration: none;
    color: #F9AB33;
}

/*--------------------------------------------*/
/* table styles     */
/*--------------------------------------------*/

table {
    border: solid white;
    width: 450px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, .25);
    /* padding: 10px; */
    /* box-shadow: 0px 0px 10px #FD5D28; */
    margin-bottom: 10px;
}
th {
    border: 1px solid white;
    color: #FD5D28;
    font-size: 1.2rem;
    padding: 5px;
}
td {
    border: 1px solid white;
    color: #F9AB33;
    font-size: 1.2rem;
    padding: 2px;
}

/*--------------------------------------------*/
/* class styles     */
/*--------------------------------------------*/


.container {
    margin: 10px;
    border-style: dotted;
    border-color:#F9AB33;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0px 0px 10px #FD5D28;
    max-width: 90%;
    
}
.highlight {
    max-width: 600px;
    margin: 0 auto;
}
.teams {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.videos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.events {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center
}
.years {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center
}
.years img {
    max-width: 450px;
}
.logo-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 1000px;
    box-shadow: 0px 0px 10px #FD5D28;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    margin: 0 auto;

}
.logo img{
    max-height: 200px;
    border-radius: 8px;
    padding: 10px;
    
}
/*--------------------------------------------*/
/* slideshow styles     */
/*--------------------------------------------*/
.hero {
    max-width: 600px;
    margin: 0 auto;
}
.slider-wrapper {
	position: relative; /*For placing the slider nav later on*/
    
}

.slider {
	width: 100%;
	display: flex;
	overflow-x: auto; /*adds a scrollbar for the user to see the rest of the images*/
	scroll-snap-type: x mandatory; /*changes behavior of scroll but wont be visable until we add scroll-snap-align value later on*/
	scroll-behavior: smooth; /*creates smooth animation to next image*/
	-ms-overflow-style: none; /* Hide scrollbar IE and Edge */
	scrollbar-width: none; /* Hide scrollbar Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.slider::-webkit-scrollbar {
	display: none;
}

.slider img {
	flex: 1 0 100%; /*Every image set to equal size, every image will retain the width it needs and not wrap its content, Every images will take up the entire parent container*/
	scroll-snap-align: start;
	object-fit: cover; /*Image fills entire container without distortion*/
}

/*----Slider Navigation----*/

.slider-nav {
	display: flex;
	column-gap: 1rem;
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%); /*moves nav 50% of its width to the left, which centers it*/
	z-index: 1;
}

.slider-nav a {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: #FD5D28;
	opacity: .75;
}

.slider-nav a:hover {
	opacity: 1;
}
/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    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: 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 */
  .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 {
    background-color: rgba(0, 0, 0, .5);
    color: #f2f2f2;
    font-size: 1.5rem;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    left: 25px;
    max-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: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }




/*--------------------------------------------*/
/* footer styles     */
/*--------------------------------------------*/

footer {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    border-top: 5px solid #FD5D28;
    /* background-color: rgb(62, 65, 137); */
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 100px;
    align-items: center;
}

footer img {
    max-height: 120px;
}

/*--------------------------------------------*/
/* responsive styles     */
/*--------------------------------------------*/

@media screen and (max-width: 1120px) {
    .videos {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        max-width: 100%;
        margin: 0 auto;
    }
    .logo-list {
        display: flex;
        flex-wrap: wrap;
        justify-self: center;
        max-width: 1000px;
        margin: 10px;
    
    }

}
@media screen and (max-width: 900px){
    footer {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 130px 1fr 130px;
    }
    footer img {
        max-height: 120px;
    }
    footer div{
        padding-top: 10px;
    }
    
}

@media screen and (max-width: 780px){
    nav ul li {
        font-size: .8em;
        text-transform: uppercase;
        letter-spacing: .2em;
        flex: 1 1 50%;
        max-width: 100%;
    }
    nav ul {
        margin: 0;
        padding-right: 10px;
        padding-left: 10px;
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 550px){

    h2 {
        font-size: 1.5rem;
    }
    html {
        background-size: contain;
        background-repeat: repeat repeat;
        background-attachment: scroll;
    }
    .years img{
        max-width: 98%;
    }
    table {
        width: 300px;
    }
    th {
        font-size: .8rem;
    }
    td {
        font-size: .8rem;
    }
}
@media screen and (max-width: 500px) {
    .videos {
        margin-top: 50px;
    }
    header {
        border-bottom: 0;
        height: 70px;
    }
    header img {
        display:none
    }
   
    
    .teams img {
        width: 300px;
    }
    /* img {
        
        display: flex;
        justify-content: center;
    } */


    /* Style the navigation menu */
 
    
    /* Hide the links inside the navigation menu (except for logo/home) */
    .buttonnav {
        display: none;
    }
    ul {
        font-size: 1rem;;
    }
    
    #myLinks a:link, #myLinks a:visited {
        color: white;
        background-color: #FD5D28;
        padding: .5em 1em;

     
    }
    #myLinks a:focus, #mylinks a:hover, #myLinks a:active {
        color: #FD5D28;
        background-color: white;
    }
    
    
    /* a { 	
      display: block; 	
      border: 1px solid; 
      padding: .5em 1em; 	
      border-radius: .5em; 
      margin: .5em;
      text-decoration: none;
    } */
    /* Style navigation menu links */
    .topnav {
        display: flex;
        flex-direction: column;
        text-transform: uppercase;
        text-align: center;
        letter-spacing: .2em;
        overflow: hidden;
        position: relative;
        font-family: verdana, sans-serif;
        z-index: +3;
    
      }

    .topnav #myLinks {
        display: none;
    }
    .topnav img {
        display: block;
        position: absolute;
        left: 5px;
        top: 2px;
        align-items: center;
        z-index: -1;
    }
    .topnav a {
        display: block;
        color: white;
        padding: 25px 25px;
        text-decoration: none;
        font-size: .8rem;
        z-index: +1;
        border-bottom: 1px solid white;


    }
    

    
    
    /* Style the hamburger menu */
    .topnav a.icon {
        background-image: url("/images/menu.png");
        background-size: contain;
        /* background-color: #FD5D28; */
        display: block;
        position: absolute;
        right: 5px;
        top: 2px;

    }
     */
    /* Add a grey background color on mouse-over */

    
    /* Style the active link (or home/logo) */
    .active {
        background-color: #28fd68;
        color: white;
    }
} 


