/*
 *
 * Border Vigilanties Styles
 *
 * Author: John Brewer
 * Date: 11/17/2020
 *
 * This site also uses https://www.w3schools.com/w3css/4/w3.css
 *
 * colors
 *
 * #211306 Dark Brown
 *
 * 
 */

/* font related styles */
.italic { font-style: italic; }
.bold { font-weight: bold; }
.top { vertical-align: top; }
.xlarge { font-size: x-large; }
.xxlarge {font-size: xx-large; }
.large { font-size: large; }
.medium { font-size: medium; }
.small { font-size: small; }
.xsmall { font-size: x-small;	}
.center { text-align: center; }

.img-border {
    border: 5px #211306 solid;
    border-radius: 15px;
}

.ad-border {
    border: 4px red solid;
    border-radius: 15px;
}

/*
 * Header container
 */
.header-container, .header-container img {
    position: relative;
    background-color: #211306;
}
.header-container img {
    z-index: 101;
}
.header-container img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

/* Main image container */
.main-image-container {
    background-color: #211306;
    margin: 1% 20%;
    padding: 8px 40px;
    width: 60%;
    text-align: center;
    color: white;
}

.img-scaleable {
    width: 100%;
    height: 100%;
}

/* Navigation buttons */
.nav {
    background-color: #211306;
    top:80px;
    right: 0;
    left: 0;
    height: 30px;
}

.nav-btn-holder {
    width: 700px;
    margin: 0 auto;
}

.btn-nav {
    float: left;
    color: #CAB908B;
    text-align: center;
    padding: 3px 20px;
}

.btn {
    cursor: hand;
}

/*
 * center table
 *
 * <div class="centered">
 *    <table>
 *    .........
 *    </table>
 * </div>
 */
div.centered
{
   text-align: center;
}
div.centered table
{
   margin: 0 auto;
   width: 90%;
}
div.centered td
{
   width: 25%;
}

.bottom-margin {
	margin-bottom: 100px;
	}

iframe
{
   border: solid 5px #405D27;
   border-radius: 15px;
}

.pic
{
   margin: 10px;
   border: solid 5px #405D27;
   border-radius: 15px;
}

/* body style for all web pages of this site */
body
{
   background-image: url("../images/grunge.jpg");
   color: #211306;
   font-family:"Book Antiqua";
   font-weight: bold;
}

hr
{
    background-color: #405D27 ;
    height: 2px;
    border-width: 0px;
    margin-left: 10.0em;
    margin-right: 10.0em;
}

.para
{
   padding: 0px 10px;
   text-indent: 20px;
}

/* setting color of the links */
/* unvisited link */
a.one:link { color: white; font-weight: bold; }
a.two:link { color: #211306; font-weight: bold; }

/* visited link */
a.one:visited { color: white; font-weight: bold; }
a.two:visited { color: #211306; font-weight: bold; }

/* mouse over link */
a.one:hover { color: #211306; background-color: white; }
a.two:hover { color: white; background-color: #211306; }

/* selected link */
a.one:active { color: white; background-color: #211306; }
a.two:active { color: #211306; background-color: white; }

/* attributes for the scores page using grid istead of tables */
.grid-container {
    display: grid;
    grid: auto / auto auto auto auto;
    margin: 0px 5%;
    width: 90%;
    grid-gap: 10px;
}

.grid-container > div {
    background-color: #211306;
    border: 1px solid #211306;
    border-radius: 15px;
    color: white;
    text-align: center;
    vertical-align: middle;
    font-size: 20px;
}

/* grid for events on calendar page */
.date { grid-area: date; grid-column: 1 / 1;}
.event { grid-area: event; grid-column: 2 / 4;}
.calendar-container {
    display: grid;
    grid: auto / date even;
    grid-auto-columns: 25%;
    margin: 0px 20%;
    width: 60%;
    grid-gap: 5px;

}

.calendar-container > div {
    background-color: #211306;
    border: 1px solid #211306;
    border-radius: 15px;
    color: white;
    font-size: x-large;
    padding-left: 5%;
}

.banner {
    background-color: #211306;
    border: 1px solid #211306;
    border-radius: 15px;
    color: white;
    width: 60%;
    margin: 2% 20%;
    font-size: xx-large;
    text-decoration: bold;
    padding-left: 2%;
}

#banner {
    background-color: #211306;
    border: 1px solid #211306;
    border-radius: 15px;
    color: white;
    width: 60%;
    margin: 2% 20%;
    font-size: xx-large;
    text-decoration: bold;
    padding-left: 2%;
}

.red-shirt {
    border: 4px solid red;
    border-radius: 15px;
    width: 60%;
    margin: 2% 20%;
    padding-left: 2%;
}

.sponsor {
    border: 2px solid #211306;
}

.calendar {
    width: 80%;
    height: 600px;
    margin: 50px 0px;
}

