* {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
}

/*header stuff*/

    h1#header{
        text-align: center;
        padding: 40px;
        color: white;
        font-family: "Sigmar", serif;
        font-weight: 400;
        font-style: normal;
    }

    header{
        background-color: rgb(30, 30, 30);
    }

    #logo{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100px;
    }

    nav ul{
        text-align: center;
        font-size: 28px;
        padding: 20px;
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    
    }

    a.link{
        text-decoration: none;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        color: white;
        padding-left: 10px;
        padding-right: 10px;
        padding: 10px;
    }

    a.link:hover{
        background-color: rgba(255, 255, 255, 0.5);
        padding: 10px;
        transition: all .2s;
        color: black;
        border-radius: 10px;
    }

        @media screen and (max-width:460px) {
            a.link{
                font-size: 8px;
            }
        }
        @media screen and (max-width:1024px) {
            a.link{
                font-size: 16px;
            }
        }

/*Dropdown Button*/

/* The dropdown container */
    .dropdown {
        overflow: hidden;
        padding: 10px;
    }
/* Dropdown content */
    .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            z-index: 1;
            left: auto;
            right: 10%;
            text-align: center;
    }
    
/* Links inside the dropdown */
        .dropdown-content a {
            float: none;
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: center;
            font-weight: bold;
    }
        a.Teams {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-size: 16px;
    }
        a.Teams:hover {
            background-color: #ddd;
            transition: all .2s ease-in;
    }
        .dropdown:hover .dropdown-content {
            display: grid;
            grid-template-columns: repeat(6, 5fr);
            margin: 10px;
    }

    @media screen and (max-width:1024px) {      
        a.link {
        font-size: 16px;}
        a.Teams {
            font-size: 10px;
        }
        aside.logo{
            width: 25px;
        }
    }
    @media screen and (max-width:1024px) {      
        div.dropdown {
        font-size: 8px;
        }
        aside.logo{
            width: 25px;
        }
        .dropdown-content {
            left: 15%;
        }
        .dropdown:hover .dropdown-content {
        grid-template-columns: repeat(2, 15fr);}

    }

/*Dropwdown Logos*/
aside.logo{
    width: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;

}

/*banner*/

        img#banner{
            overflow: hidden;
            position: relative;
            width: 30%;
            animation: wavemaker 20s infinite alternate;
            padding: 20px;
    }

   @media screen and (max-width:1024px) {
    img#banner{
        width: 70%;
        overflow: hidden;
    }
   }
   @media screen and (max-width:800px) {
    img#banner{
        width: 50%;
        overflow: hidden;
    }
   }

        div#white{
            background-color: rgb(253, 253, 253);
            box-shadow: 1px -1px 5px rgba(46, 46, 49, 0.389);
    }

            @keyframes wavemaker {
            0% {
            transform: translateX(0vw);
            }

            100% {
            transform: translateX(71vw);
            }

    }

/*h1 & Section stuff*/

        section.sqy{
            background-color: rgb(97, 63, 0);
            margin-bottom: 20px;
            padding: 10px;
            padding-top: 20px;
            padding-bottom: 20px;
    }

        div.insidewhite{
            background-color: rgb(253, 253, 253);
            border-radius: 10px;
            margin-left: 20px;
            margin-right: 20px;
            padding: 30px;
    }

        h1.title{
            text-align: center;
            font-size: 40px;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, bold;
            color: rgb(40, 40, 40);
            padding: 40px;
            margin-left: 20px;
            margin-right: 20px;
            margin-top: 50px;
    }

/*Sub Categories Stuff*/

        h2{
            margin-left: 20px;
            margin-right: 20px;
            padding-bottom: 5px;
            padding-top: 10px;
    }

        p{
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

        img#right{
            float: right;
            height: auto;
            padding-top: 20px;
            padding-right: 50px;
    }

    .sunshine{
            content: url(../images/lebron.webp);
            animation: fadeIn 8s;
            }

                        @keyframes fadeIn {
                            0% {
                                opacity: 0;
                            }
            
                            100% {
                                opacity: 1;
                            }
                        }


    /*Offense & Defense Playbook*/
        ul.sidenav {
            list-style-type: none;
            margin: 0;
            padding: 0;
            width: 25%;
            background-color: rgb(0, 0, 0);
            display: inline;
            height: 100%;
            overflow: auto;
        }
    
        a.pick {
            display:block;
            color: rgb(0, 0, 0);
            background-color: white;
            padding: 8px 16px;
            text-decoration: none;
            font-weight: bold;
            margin-left: 20px;
            margin-right: 20px;
        }

            a.active {
            background-color:rgb(97, 63, 0);
            color: white;
            text-align: center;
            font-weight: bold;
            font-size: 24px;
                }
    
        a.pick:hover:not(.active) {
            background-color: rgba(0, 0, 0, 0.5);
            color: rgb(255, 255, 255);
            transition: all .2s ease-in;
        }

            @media screen and (min-width:0px) {
            img#right {
                width: 100%;
                padding-left: 10px;
                }
    }
            @media screen and (min-width:844px) {
            img#right {
                width: 60%;
                padding-left: 10px;
                }
    }
            @media screen and (min-width:1024px) {
            img#right {
            width: 40%;
            padding-left: 10px;
                }
    }

    /* Scroll Wheel Personnel*/
    section#Players{
        position: relative;
    }
    
    div#move {
        text-align: center;
        display: grid;
        overflow: hidden;
        white-space: nowrap;
        grid-template-columns: repeat(18, 1fr);
        gap: 20px;
        padding: 10px;
    }

    figure{
        box-shadow: 5px 5px 10px;
        border-radius: 10px;
        background-color: rgb(97, 63, 0);
    }

    figure img{
        width: 200px;
        background-color: white;
        border-radius: 10px;
    }

    figcaption{
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 20px;
        color: white;
        text-shadow: 2px 2px 5px black;
        padding-bottom: 5px;
    }

    /*prev & next buttons*/
                #prev,
                #next {
                    cursor: pointer;
                    position: absolute;
                    top: 50%;
                    width: auto;
                    display: flex;
                    justify-content: center;
                    margin-top: -22px;
                    padding: 16px;
                    padding-top: 30px;
                    padding-bottom: 30px;
                    color: rgb(0, 0, 0);
                    text-shadow: 1px 1px 5px white;
                    font-weight: bold;
                    font-size: 24px;
                    transition: 0.4s ease;
                    z-index: 8;
                }

        #prev{
            left: 0;
            border-radius: 3px 3px;
        }
        #next {
            right: 0;
            border-radius: 3px 3px;
        }
        #prev:hover, #next:hover {
            background-color: rgba(0, 0, 0, 0.5);
            color: white;}

    /* footer */
    footer{
        background-color: rgb(30, 30, 30);
        padding: 20px;
        text-align: center;
    }
    footer a{
        text-decoration: none;
        color: white;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }