#wrapper {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: minmax(0px, 0.5fr) repeat(5, minmax(0, 175px)) minmax(0px, 0.5fr)
}

#maingrid {
    display:grid;
    grid-template-rows: minmax(0px, 25px) minmax(0px, 50px) minmax(.5fr, 1fr) minmax(0px, 50px) minmax(.5fr, 1fr) minmax(0px, 50px) minmax(.5fr, 1fr);
    grid-template-columns: .2fr repeat(5, 1fr) .2fr
}

header {
    grid-row: 1 / 3;
    grid-column: 1 / 9;
    text-align: center;
}

nav {
    background-color: #D05301;
    grid-row: 3 / 4;
    grid-column: 1 / 9;
}

main {
    background-color: #D9D9D9;
    text-align: center;
    grid-row: 5 / 7;
    grid-column: 2 / 7;
    display: flex;
    flex-direction:column;
    padding: 10px
}

footer {
    text-align: center;
    grid-row: 7 / 9;
    grid-column: 1 / 9;
    color:rgb(107, 107, 107);
    font-style:italic
}

h1 {
    color:rgb(255, 255, 255);
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    text-align: left
}

body {
    background-image: linear-gradient(180deg, rgba(255,255,255,1) 15%, rgba(217,217,217,1) 100%);
}

#headerpic1 {
    background-image: url(Newproject.jpg);
    grid-row: 1 / 3;
    grid-column: 1 / 8;
    background-size: cover;
}

* {
    box-sizing: border-box
}

nav ul li {
    width: 100%
}

nav ul {
    margin: 0px;
    padding: 5px;
    display: flex;
    flex-flow: row nowrap;
    list-style-type: none;
}

nav a {
    color: #FFFFFF;
    padding: 1rem 0rem;
    display: block;
    text-align: center;
    font-size:xx-large;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight:300;
    text-decoration:none
}

nav a:hover {
    color:#D9D9D9
}

#bonds1 {
    width: 100%;
    height: 100%;
    background-size: fixed;
    background-repeat: no-repeat;
    border:5px solid#0D314E;
    grid-column: 2 / 4;
    grid-row: 3;
    outline: 5px solid #D05301
}

#henderson {
    width: 100%;
    height: 100%;
    background-size: fixed;
    background-repeat: no-repeat;
    padding:5px;
    border:5px solid#0D314E;
    outline: 5px solid #D05301;
    grid-column: 5 / 7;
    grid-row: 5;
}

#kersh {
    width: 100%;
    height: 100%;
    background-size: fixed;
    background-repeat: no-repeat;
    padding:5px;
    border:5px solid#0D314E;
    outline: 5px solid #D05301;
    grid-column: 2 / 4;
    grid-row: 7;
}

h2 {
    grid-column: 3 / 6;
    grid-row: 1 / 1;
    color:#0D314E;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size:36px;
    text-decoration:underline;
}

h3 {
    color:#0D314E;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size:large;
    text-decoration:underline;
    padding-top: 10px;
}

p {
    color:#000000;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

#article1 {
    grid-column: 4 / 7;
    grid-row: 3;
    align-self: center;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 25px;
    background-color: #0D314E;
    color:#D9D9D9;
    width: 100%;
    height: 100%;
    border: solid #D9D9D9 10px;
    outline: 5px solid #D05301;
    background: -webkit-linear-gradient(#0D314E, #0D314E, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

#article2 {
    grid-column: 2 / 5;
    grid-row: 5;
    align-self: center;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 25px;
    background-color: #0D314E;
    color:#D9D9D9;
    width: 100%;
    height: 100%;
    border: solid #D9D9D9 10px;
    outline: 5px solid #D05301;
    background: -webkit-linear-gradient(#0D314E, #0D314E, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#article3 {
    grid-column: 4 / 7;
    grid-row: 7;
    align-self: center;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 25px;
    background-color: #0D314E;
    color:#D9D9D9;
    width: 100%;
    height: 100%;
    border: solid #D9D9D9 10px;
    outline: 5px solid #D05301;
    background: -webkit-linear-gradient(#0D314E, #0D314E, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#article1head {
    grid-column: 3 / 6;
    grid-row: 2;
}

#article2head {
    grid-column:3 / 6;
    grid-row: 4;
    padding-top: 50px
}

#article3head {
    grid-column:3 / 6;
    grid-row: 6;
    padding-top: 50px
}

#baseleft {
    grid-column: 2 / 3;
    grid-row: 1;
    width: 100%;
    height: 100px;
    padding-left: 20%;
    padding-right: 20%;
}

#baseright {
    grid-column: 6 / 7;
    grid-row: 1;
    width: 100%;
    height: 100px;
    padding-left: 20%;
    padding-right: 20%;
}

@media only screen and (max-width: 992px) {

    h1 {
        text-align: center;
        background-color:#D05301;
        border: solid black 2px;
    }

    nav ul {
        flex-flow: column nowrap;
    }

    li {
        border-top: solid black 2px;
        border-left: solid black 2px;
        border-right: solid black 2px;
     }

     li:last-child {
        border-bottom: solid black 2px
     }

     h3 {
        font-size: x-large;
     }
}

@media only screen and (max-width: 768px) {

    #headerpic1 {
        display: none
    }

    #baseleft {
        display: none
    }

    #baseright {
        display: none
    }
    
    #bonds1 {
        grid-column: 3 / 6;
        grid-row: 3;
    }
    
    #henderson {
        grid-column: 3 / 6;
        grid-row: 6;
    }
    
    #kersh {
        grid-column: 3 / 6;
        grid-row: 9;
    }
    
    h2 {
        grid-column: 3 / 6;
        grid-row: 1;
        background-color:#0D314E;
        color:#D9D9D9
    }
    
    #article1 {
        padding-top:30px;
        grid-column: 2 / 7;
        grid-row: 4;
    }
    
    #article2 {
        grid-column: 2 / 7;
        grid-row: 7;
    }
    
    #article3 {
        grid-column: 2 / 7;
        grid-row: 10;
    }
    
    #article1head {
        grid-column:3 / 6;
        grid-row: 2;
    }
    
    #article2head {
        grid-column:3 / 6;
        grid-row: 5;
        padding-top: 50px
    }
    
    #article3head {
        grid-column:3 / 6;
        grid-row: 8;
        padding-top: 50px
    }
}



#article1latest {
    grid-column: 2;
    grid-row: 2 / 4;
    padding: 15px;
    height:100%;
    width: 100%;
    background-color: #0D314E;
    border: 5px solid #D05301;
}

#article1latesthead {
    grid-column: 3 / 8;
    grid-row: 2;
    text-align:left;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    Padding: 15px;
    vertical-align: text-top;
    border-top: solid #0D314E 5px;
    border-left: solid #0D314E 5px;
    border-right: solid #0D314E 5px;

}

#article1latesttxt {
    grid-column: 3 / 8;
    grid-row: 3;
    text-align:left;
    background-color: #FFFFFF;
    width: 100%;
    height: 50%;
    Padding: 15px;
    border-bottom: solid #0D314E 5px;
    border-left: solid #0D314E 5px;
    border-right: solid #0D314E 5px;

}

#article2latest {
    grid-column: 2;
    grid-row: 4 / 6;
    padding: 15px;
    height:100%;
    width: 100%;
    background-color: #0D314E;
    border: 5px solid #D05301;
}

#article2latesthead {
    grid-column: 3 / 8;
    grid-row: 4;
    text-align:left;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    Padding: 15px;
    border-top: solid #0D314E 5px;
    border-left: solid #0D314E 5px;
    border-right: solid #0D314E 5px;
}

#article2latesttxt {
    grid-column: 3 / 8;
    grid-row: 5;
    text-align:left;
    background-color: #FFFFFF;
    width: 100%;
    height: 50%;
    Padding: 15px;
    border-bottom: solid #0D314E 5px;
    border-left: solid #0D314E 5px;
    border-right: solid #0D314E 5px;
}

#article3latest {
    grid-column: 2;
    grid-row: 6 / 8;
    padding: 15px;
    height:100%;
    width: 100%;
    background-color: #0D314E;
    border: 5px solid #D05301;
}

#article3latesthead {
    grid-column: 3 / 8;
    grid-row: 6;
    text-align:left;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    Padding: 15px;
    border-top: solid #0D314E 5px;
    border-left: solid #0D314E 5px;
    border-right: solid #0D314E 5px;
}

#article3latesttxt {
    grid-column: 3 / 8;
    grid-row: 7;
    text-align:left;
    background-color: #FFFFFF;
    width: 100%;
    height: 50%;
    Padding: 15px;
    border-bottom: solid #0D314E 5px;
    border-left: solid #0D314E 5px;
    border-right: solid #0D314E 5px;
    color: linear-gradient(to left,
        rgb(255, 255, 255) 0%,
        #000000 50%,
        transparent 60%,
        transparent 100%) 
        no-repeat no-repeat;
}

#article4latest {
    grid-column: 2;
    grid-row: 8 / 10;
    padding: 15px;
    height:100%;
    width: 100%;
    background-color: #0D314E;
    border: 5px solid #D05301;
}

#article4latesthead {
    grid-column: 3 / 8;
    grid-row: 8;
    text-align:left;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    Padding: 15px;
    border-top: solid #0D314E 5px;
    border-left: solid #0D314E 5px;
    border-right: solid #0D314E 5px;
}

#article4latesttxt {
    grid-column: 3 / 8;
    grid-row: 9;
    text-align:left;
    background-color: #FFFFFF;
    width: 100%;
    height: 50%;
    Padding: 15px;
    border-bottom: solid #0D314E 5px;
    border-left: solid #0D314E 5px;
    border-right: solid #0D314E 5px;
}

#team1 {
    grid-column: 2;
    grid-row: 2 / 4;
    padding: 15px;
    background-color: #FFFFFF;
    outline: solid #D05301 5px;
    border: solid #0D314E 5px;
}

#team2 {
    grid-column: 6;
    grid-row: 2 / 4;
    padding: 15px;
    background-color: #FFFFFF;
    outline: solid #D05301 5px;
    border: solid #0D314E 5px;
}

#match1head {
    grid-column: 3 / 6;
    grid-row:  2;
    color:#0D314E;
    font-size: x-large;
    text-decoration: underline;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    font-weight: bold;
    padding-top:20px
    }

#match1txt {
    grid-column: 3 / 6;
    grid-row: 3;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    font-weight: bold;
}

#team3 {
    grid-column: 2;
    grid-row: 4 / 6;
    padding: 15px;
    background-color: #FFFFFF;
    outline: solid #D05301 5px;
    border: solid #0D314E 5px;
}

#team4 {
    grid-column: 6;
    grid-row: 4 / 6;
    padding: 15px;
    background-color: #FFFFFF;
    outline: solid #D05301 5px;
    border: solid #0D314E 5px;
}

#match2head {
    grid-column: 3 / 6;
    grid-row:  4;
    color:#0D314E;
    font-size: x-large;
    text-decoration: underline;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    font-weight: bold;
    padding-top:20px
}

#match2txt {
    grid-column: 3 / 6;
    grid-row: 5;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    font-weight: bold;
}

#team5 {
    grid-column: 2;
    grid-row: 6 / 8;
    padding: 15px;
    background-color: #FFFFFF;
    outline: solid #D05301 5px;
    border: solid #0D314E 5px;
}

#team6 {
    grid-column: 6;
    grid-row: 6 / 8;
    padding: 15px;
    background-color: #FFFFFF;
    outline: solid #D05301 5px;
    border: solid #0D314E 5px;
}

#match3head {
    grid-column: 3 / 6;
    grid-row:  6;
    color:#0D314E;
    font-size: x-large;
    text-decoration: underline;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    font-weight: bold;
    padding-top:20px
}

#match3txt {
    grid-column: 3 / 6;
    grid-row: 7;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    font-weight: bold;
}

#team7 {
    grid-column: 2;
    grid-row: 8 / 10;
    padding: 15px;
    background-color: #FFFFFF;
    outline: solid #D05301 5px;
    border: solid #0D314E 5px;
}

#team8 {
    grid-column: 6;
    grid-row: 8 / 10;
    padding: 15px;
    background-color: #FFFFFF;
    outline: solid #D05301 5px;
    border: solid #0D314E 5px;
}

#match4head {
    grid-column: 3 / 6;
    grid-row:  8;
    color:#0D314E;
    font-size: x-large;
    text-decoration: underline;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    font-weight: bold;
    padding-top:20px
}

#match4txt {
    grid-column: 3 / 6;
    grid-row: 9;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    font-weight: bold;
}



#face {
    grid-column: 2 / 5;
    grid-row: 2 / 6;
    background-color: #FFFFFF;
    padding: 15px;
    outline: solid #D05301 5px;
    border: solid #0D314E 5px;

}

#creatortxt1 {
    grid-column: 5 / 7;
    grid-row: 2 / 4;
    background-color: #FFFFFF;
    padding:15px;
    outline: solid #D05301 5px;
    border: solid #0D314E 5px;
}

#creatortxt2 {
    grid-column: 5 / 7;
    grid-row: 4 / 6;
    background-color: #FFFFFF;
    padding:15px;
    outline: solid #D05301 5px;
    border: solid #0D314E 5px;
}


#lineupig {
    grid-column: 2;
    grid-row: 7;
    text-align:center
}

#lineuptw {
    grid-column: 4;
    grid-row: 7;
    text-align:center
}

#lineupem {
    grid-column: 6;
    grid-row: 7;
    text-align:center
}

#contact {
    grid-column: 4;
    grid-row: auto;
    gap: .75rem;
    width: 100%;

}

label {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    color:#0D314E;
    text-decoration:underline;
    font-weight: bold;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
}

input, textarea {
    font-size: 1rem;
    padding: 10px;
    background-color: #f0f0f0;
    color: #666666;
    border: 3px #0D314E solid
}


#article {
    grid-row:1;
    grid-column:4
}

#michael {
    grid-row:2;
    grid-column:4
}