body {background-color: #008080; 
    color: #000000;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    background-image: linear-gradient(to bottom, #FFFFFF, #008080)}
       /*This allows the main content to stay in white space but gives dimention with color*/

main {padding-left: 3em; 
    padding-right: 3em;
    display: block;
    background-color: #FFFFFF;
    overflow: auto;}
/*This setting is for the main information on the webpages*/

#wrapper {background-color: #FFFFFF;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    min-width: 960px;
    max-width: 2048px;
    box-shadow: 3px 3px 3px #777;}

header {color: #FFFFFF;
    font-family: Verdana, sans-serif;
    height: 80px;
    background-image: url(fire.jpg); 
    background-position: right;
    background-position: left; 
    height: 72px;;}
/*This setting is for the top of the page and will be repeated on every link within the website*/

h1 {text-align: center;
    padding-top: .5em;
    font-size: 2.5em;
    font-style: italic;}

#team {height: 300px;
    background-image: url(training.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;}
/*This is the photo that is attached to the top of the basketball file*/

#hoop {height: 300px;
    background-image: url(hoop.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;}
/*This is the photo that is attached to the top of the lessons file*/

#dreams {float: right;
    height: 150px;}

nav {font-size: 1.2em;
    text-align: center;
    background-color: #FFFFFF;}
/*My navagation pane will be displayed at the top of the webpage at all times*/

nav ul {flex-direction: row;
    margin: 0;
    padding-left: 0em;
    display: flex;
    list-style-type: none}
   
nav li {padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-right: 1em;
    padding-left: 1em;
    width: 100%;}

h2 {color: #000000;
    font-family: Verdana, sans-serif;
    font-size: 2.0em;
    text-align: center;
    border-bottom: solid #000000;
    font-style: italic;}

h3 {color: #000000;
    font-size: 1.2em;
    font-family: Verdana, sans-serif;
    text-align: center;
    border-style: solid; 
    border-color: #665c5c;}

.academy {color: #FF0000;
    font-size: 1.2em;
    font-weight: bold;}
/*This class makes the font bold and red*/

.game {color: #00008B;
    font-style: italic;
    font-size: 1.2em;
    font-weight: bold;}
/*This class makes the font bold, italic and blue*/

footer {font-size: .70em;
    color: #FFFFFF;
    font-style: italic;
    text-align: center;
    padding: 1em;
    background-color: #008080;}
/*A footer will be displayed at the end of each page*/

section {float: left;
    padding-left: 2em;
    padding-right: 2em;
    width: 33%;}
/*Allows the web page to be broken into sections to make viewing more appealing*/

table {width: 75%;
    margin: auto;
    border: 1px solid #000000;
    border-collapse: collapse;}

td, th {padding: 5px;
    border: 1px solid #000000;}
   
td {text-align: center; }

.text {text-align: left;}
/*This class allows the text in the center part of the table to be aligned to the left rather than the center*/

.column {width: 100%;
    align-items: center;
    text-align: center;}
/*This class allows the text in the outer columns of the table to be centered*/

.title {color: grey;}
/*This class makes the coaches title's on the staff page to be grey*/

form {display: flex;
    flex-direction: column;
    padding-left: 1em;
    width: 80%;
    margin-bottom: 1em;}
/*These are the design aspects for the form on the contact page*/

.container {width: 100%;
    height: 100vh;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;}
/* These settings make sure the presentation in the facilities file are centered and fit the page*/
    
.swiper {width: 80%;
    height: fit-content;}
/*These are the setting for the presentation when it swipes*/

.swiper-slide img {width: 100%;}
/*This makes sure all images within the presentation are the same size and fit the screen*/

@media (min-width: 1024px) {nav ul {padding-right: 10%; padding-left: 10%;}
    #wrapper {margin: auto; width: 80%;}}
/*These settings allow the website to be visually appealing when it is being seen in a web browser */

@media (min-width: 600px) {
    h1 {font-size: 2em; letter-spacing: 0.25em;}
    nav ul {flex-direction: row; flex-wrap: nowrap; justify-content: space-around; padding-right: 2em}
    nav li {width: 12em; border-bottom: none;}
    section {padding-right: 2em; padding-left: 2em;}
    .mobile {display: none;}
    .desktop {display: inline;}
    #dreams {background-size: 100% 100%;}
    #hoop {background-size: 100% 100%;}
    form {width: 60%; display: grid; grid-gap: 1em; grid-template-columns: 10em 1fr;}
    input[type="submit"] {grid-column: 2; width: 9em;}}
/*These settings allow the website to be visually appealing on a smaller screen (ex: a smartphone)*/