* {
    box-sizing: border-box;
}

body {
    background-image: url(./images/fb-fieldwotxt..jpeg);
    background-size: cover;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    padding: 0;
/*------------Navigation----------*/
}
.navbar {
    display: flex;
    color: white;
    justify-content: space-evenly;
    align-items: center;

   
}
.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    
    
    
}
.navbar-links li {
    list-style: none;
    display: flex;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #088395;
    margin: 2px;
    padding: 8px 10px 10px 10px;
    
}
.navbar-links li a {
    text-decoration: none;
    font-size:0.8rem;
    font-weight: 300;
    padding: 3px;
    /* display: block; */
    
}
#active {
    background-color: rgb(4, 25, 23);
    padding: 8px;
    border: 1px solid white;
}

.navbar-links ul li a:hover {
    background-color:rgb(124, 175, 170);
     border-radius: 5px;
    color:black;
    padding: 2px;
    transition: all 1s ease;
   
 
}

a {
    color: white;
    text-decoration: none;
}
ul {
    padding-inline-start: 25px;
    list-style-position: inside;
}
.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
    width: 30px;
}
.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}
@media (max-width: 645px) {
    .toggle-button {
        display: flex;
    }
    .navbar-links {
        display: none;
    }
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-links ul {
        flex-direction: column;
        width: 100%;
    }
    .navbar-links li a {
        padding: .5rem 1rem;
    }
    .navbar-links.active {
        display: flex;
    }
}
/*----------End of Navigation-----*/
.line {
    text-decoration: underline;
}
.main {
    border: 5px dashed azure;
    margin: auto;
    margin-bottom: 15px;
    padding: 15px 0px;
    width: 70%;
    background-color: rgb(8, 131, 149, 0.9);
    border-radius: 10px;

}
.wide {
    width: 80%;
}
@media (max-width: 600px){
    .main {
        width: 100%;
    }
    .wide {
        width: 100%;
    }
}
.bg {
    font-size: 1.5rem;
}

.board {
    justify-content: center;
}

/* ------------Reunion Page----------- */


.card>ul {
    list-style: none;
    width: 240px;
    margin-left: 20px;
    display: inline-block;

}

.committee, .cards {
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-auto-rows: auto;
}

.card .head {
    text-transform: uppercase;
}

.games {
    justify-content: space-evenly;
}

.hof {
    width: 200px;
    padding: 3px;
}

.hof>ul {
    list-style: none;
}

.head {
    font-size: 1.2rem;
    text-decoration: underline;
}

.forms {
    background-color: rgb(8, 131, 149, 0.8);
    color: black;
    list-style: none;
    text-align: center;
    padding: 30px 0;
}

.forms>h2 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.forms>li {
    margin-bottom: 6px;
}

.forms>li>a {
    color: black;

}
.schedule {
    text-align: center;
    font-size: 1.6rem;

}
/*-----Golden Thirty Page--*/
#golden {
    list-style-type: none;
    font-size: .9rem;
}

#golden>li {
    list-style: none;
    counter-increment: num;

}

#golden>li:before {
    content: "G" counter(num) " - ";
}
/*-------End Golden Thirty---*/
h2, h3, p {
    color: black;
    Margin: auto;
    margin-top: 15px;
    width: 80%;
}

h3 {
    font-size: 1rem;
    text-decoration: underline;
}

.note>a {
    color: black;
}
/*------Out of State Members Page----*/
#o-o-state {
    list-style-type: none;
    font-size: .9rem;
}

#o-o-state>li {
    list-style: none;
    counter-increment: num;
}

#o-o-state>li:before {
    content: "OS" counter(num) " - ";
}
/*-------Past Presidents----*/
p>a {
    font-size: 1rem;
    font-weight: 700;
    color: black;
    text-decoration: underline;
}

.past {
    padding-left: 30px;
}

#pastpres {

    font-size: 0.9rem;
}

#pastpres>li {
    padding-left: 10px;
}



.tag {
    color: white;
    font-size: 4rem;
    margin-top: 50px;
    text-align: center;
    text-transform: uppercase;
}

.times {
    display: flex;
    justify-content: space-evenly;
}

td, th {
    text-align: center;
}

th {
    text-decoration: underline;
    font-size: 1.2rem;
}
/* galery page */
.photos {
    display: grid;
    grid-template-columns: repeat(auto-fit);
    grid-auto-rows: auto;
}
.img {
    justify-content: space-between;
}


footer {
    background-color: #088395;
    color: antiquewhite;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 20px;
    padding: 10px 0;
    text-align: center;
    border: 3px solid white;
    border-radius: 10px;
}