/* General styling that must be included on each style sheet in order for everything to work */

@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');

/* Resetting the css to reduce issues across browsers or for old browsers taken from https://meyerweb.com/eric/tools/css/reset/ */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {

    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    background: #00685E;
    height: auto;
}

h1 {

    font-weight: 400;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 0;

}

h2 {

    font-weight: 400;
    font-size: 1.2rem;
    text-transform: capitalize;
    margin: 0;

}

h3 {
    
    font-weight: 400;
    margin:0;
    
}

img {

    display: block;
    width: 100%;

}

main {

    max-width: 900px;
    margin: auto;
    box-shadow: 30px 0px 40px rgba(0,0,0,0.1),-30px 0px 40px rgba(0,0,0,0.1);  

}

.wrapper {

    margin-right:auto;
    margin-left: auto;
    max-width: 960px;
    padding-right: 10px;
    padding-left: 10px;
    background: #00685E;


}


/* End General Styling */

/* Head of the page where the page title goes */

#landing {
    
    background: #532A44;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

}

#landing-text {
    
    display: flex;
    flex: auto;
    height: 10vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top:0.75rem;
    padding-bottom:0.75rem;
    color: #eee;
    
}

#landing-text h2 {
    
    color: #fff;
    
}

/* Teams general styling */

.team {

  background-color: #eee;

}


#contentContainer {
    
    background-color: #eee;
    width: 100%;
    text-align: center;
    
}

.teamsTitle {
    
    margin: auto;
    width: 100%;
    padding:1rem;
    background: #FCC72C;
    color: #333;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    border-bottom: 2px solid #333;
    
    
}

.teamsTitle, button {
    
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.4s;
    border-bottom: 2px solid #333;

    

}

.teamsTitle:hover {
    
    color:#eee;
    background: #333;
    
}

.name {
    
    display: inline-block;
    
}

.name, img {
    
    height: 1.5rem;
    width: auto;
    padding-top: 1.5px;
    
}

.teamsContent {
    
    padding-bottom: 2.5rem;
    
}

.teamsContent h2 {
    
    text-align: center;
    font-size: 1.2rem;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    text-decoration: underline;
        
        
}

.teamsContent ul {
    
    width: 100%;
    text-align: center;
    
}

/* this creates the a pseudo element below each ul and adds the border. Found the solution here: https://www.steckinsights.com/shorten-length-border-bottom-pure-css/ */
.teamsContent ul:after {
    
    content: "";
    display:block;
    margin: 0 auto;
    width: 80%;
    padding: 0;
    border-bottom: 1px solid #7C8292;
    
}

.teamsContent li {
    
    display: inline-block;
    padding-bottom:0.5rem;
    padding-top: 0.5rem;
    margin: 0;
    width:32%;
    text-align: center;
    
}

.picks h2 {
    
    text-align: center;
    font-size: 1.2rem;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    text-decoration: underline;
        
        
}

.picks h3 {
    
    text-align: center;
    font-size: 1.2rem;
    padding-bottom: 1rem;
    text-decoration: underline;

}

.entry-picks {
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin:0;
    padding-left: 50px;
    
}

.entry-draft-one {
    
    grid-column: 1;
    width: 50%;
    text-align: center;
    
}

.entry-draft-two {
    
    grid-column: 2;
    width: 50%;
    text-align: center;
    
}

.entry-picks li {
    
    display: inline-block;
    padding-bottom:0.5rem;
    padding-top: 0.5rem;
    width:100%;
    text-align: center;
    
}

.entry-picks ul:after {
    
    display:none !important
    
}

.waivers li {
    width: 19%;
}

.minor-pro-picks li {
    width: 14%;
    
}

.tradeblock a{
    color: #333;
}

/* Inline-color cleanup */

.empty {
    color: blue;
}
.offseason {
    color: gainsboro;
}

.noncompliant {
    color: red;
}


/* footer content for mobile */




/* Screen sizes 500px and up */


@media(min-width:500px){
    
    #landing {
        
        display: flex;
        height: 100%;
        width: 100%;
        
    }
    
    #landing-text {
        
        height: 10vh;
        width: 100%;
        
    }
    
    .entry-picks {
    
    padding-left: 100px;
    
    }
    
    .name, img {
    
    height: 2rem;
    
}
    
}

/* Screens sizes 700px and up */

@media(min-width:910px) {
    
    
    .teamsTitle {
        
        font-size: 2rem;
        
    }
    
    .teamsContent h2 {
        
        font-size: 1.7rem;
        
    }
    
    
    .teamsContent {
        
        font-size: 1.2rem;
        
    }
    
}

