@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..600;1,100..600&display=swap');

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

:root {
    --lps-light-blue: #0071b8;
    --lps-dark-blue: rgb(0, 92, 153);
    --lightblue-background: #c5e9ff;
    --shadow-color: rgba(0, 0, 0, 0.199);
    --standard-box-shadow: 0px 0px 5px rgb(202, 202, 202);
    --line-color: rgba(206, 227, 239, 1);
    --dark-red: rgb(197, 0, 0);
}

/** SCROLL BAR  **/
::-webkit-scrollbar {
    width: 5px;
}

/* Scroll Bar Track */
::-webkit-scrollbar-track {
    background: white;


}

/* Scroll Bar Handle */
::-webkit-scrollbar-thumb {
    /* background: #0071b8; */
    background: black;
}

/* Scroll Bar Handle on hover */
::-webkit-scrollbar-thumb:hover {
    /* background: #00588f; */
    background: grey;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;


}

#bypassBlocks {
    height: 0px;
    overflow-y: hidden;
}

body {
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: 19px;
    color: white;
    background-color: #004280;
    font-family: 'Josefin Sans', Sans-Serif, Arial;
    font-weight: 330;
    -margin: 0px;
    padding: 30px; 
}

li {
    list-style-type: none;
    line-height: 1.5em;
    margin-bottom: 1.5em;
}

.hof-inductee {
    display: none;
    text-align: center;
    animation: fadeIn 1.5s ease-in forwards;
}

.hof-inductee:nth-of-type(1) {
    display: block;
}

.hof-inductee img {
    width: 80vw;
    max-width: 400px;
    border-radius: 200px;    
}

.nav-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
    margin: auto;
    margin-bottom: 20px;
}

.nav-controls img {
    width: 50px;
}

p {
    margin-bottom: 1.1em;
    margin-top: 1.1em;
    line-height: 1.5em;
}

strong {
    font-weight: 600;
}

a,
a:link,
a:visited {
    text-decoration: none;
    color: rgb(0, 87, 145);
    font-weight: 600;
    line-height: 1.5em;
    min-height: 24px;
}

a:hover,
a:visited:hover,
a:focus {
    text-decoration: underline;
}

hr {
    height: 1px;
    background-color: var(--line-color);
    border-width: 0px;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
}

/* very top of the page for AA compliance */
h1 {
 text-align: center;
}

/* district homepage top messages and page titles*/
h2 {
    margin-bottom: 0px; margin-top: 0px;
}

/* h3 page titles*/
h3 {
    margin-bottom: 10px;  
}



/* BREAKPOINTS */

@media only screen and (min-width: 640px) {

    li {
        list-style-type: disc;
        margin-left: 20px;
        line-height: 1.5em;
        margin-bottom: 0px;
    }

    .nav-controls {
        width: 100%;
        max-width: 100vw;
    }

    .hof-inductee {
        text-align: left;
    }    

    .hof-inductee img {
        float: right;
        max-width: 300px; 
        margin-left: 30px;       
    }


}

@media only screen and (min-width: 800px) { 

}

@media only screen and (min-width: 860px) { 

}

@media only screen and (min-width: 1026px) {  

}

@media only screen and (min-width: 1060px) {    

}

@media only screen and (min-width: 1200px) {    

}

@media only screen and (min-width: 1209px) {

}

@media only screen and (min-width: 1262px) { 

}

@media only screen and (min-width: 1335px) {

}

@media only screen and (min-width: 1600px) {

}