* {
    box-sizing: border-box;
}

:root {
	--col1: #fff;
	--col2: #333;
	--col3: #3399ff;
	--col4: #f0f0f5;
  --col5: #0066cc;
}
/* ALL OTHER LINKS */
a {
    color: var(--col5);
    text-decoration: none;
}
a:hover {
    color: var(--col3);
	/*text-decoration: underline; */
}
/* Style all font awesome icons */
.faHead {
  padding: 10px;
  font-size: 20px;
  width: 30px;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

body {
  background-color: white;
  color: black;
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  font-size: larger;
}

.main {
 
 margin: auto;
 max-width: 800px;
 padding: 50px;
 /*border: 1px solid;*/
}
/* --- For Pages with a Sidebar --- */
.mainContainer {
    margin: auto;
    max-width: 1000px;
    clear: both;
}

.content {
    max-width: 700px;
    float: left;
    padding: 20px;
    
}

.sidebar {
    padding: 20px;
    width: 300px;
    float: left;
    
}
.blogMeta {
  font-size: 16px;
}

/* --- Header --- */

.logoMain {
  width: 300px;
  float: right;
  margin: 20px;
}
header {
 margin: auto;
 max-width: 800px;
}

.headerBanner, .midBanner, .pageBanner {
  margin:0;
  float: left;
  clear:both;
  text-align:center;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)) ,url(../images/10thSC-men.jpg);
  background-color: #333;
  color:#fff;
  font-size: 36px;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-attachment: fixed; /* set a background image as fixed */ 
}

.headerBanner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)) ,url(../images/10thSC-men.jpg);
  padding-top: 100px;
  padding-bottom: 200px; 
}

.midBanner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)) ,url(../images/campfire.jpg);
  padding-top: 200px;
  padding-bottom: 200px; 
}

.pageBanner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)) ,url(../images/battleimage.jpg);
  padding-top: 70px;
  padding-bottom: 70px; 
}


.headerText {
  font-family: "times new romans";
}
.buttonDiscord a {
 	color: var(--col1);
	display: inline-block;
	text-align: center;
	padding: 10px 20px 10px 20px;
	background-color: var(--col5);
	text-decoration: none;
	margin-right: 10px;
	font-size: 30px;
	border-radius: 5px;
}

.buttonDiscord a:hover {
	background-color: var(--col3);
	color: var(--col4);
	text-decoration: none;
} 

.logo {
  width: 100px;
}
.10thscTitle {
 visibility: hidden;
}
/* NAVBAR SECTION */
.navBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--col1);
    color: var(--col2);
    font-size: 25px;
}

.brand-title {
    font-size: 40px;
    margin: .5rem
}

.navBar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.navBar-links li {
    list-style: none;
}

.navBar-links li a {
    text-decoration: none;
    color: var(--col2);
    padding: 1rem;
    display: block;
}

.navBar-links li:hover {
    background-color: var(--col4);
    border-radius: 10px;
}

.toggle-button {
    position: absolute;
    top: 2rem;
    right: 3rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 70px;
}

.toggle-button .bar {
    height: 6px;
    width: 100%;
    background-color: var(--col2);
    border-radius: 10px;
}
/* TOP LINKS */
.topLinks {
	text-align:right;
	font-size: 25px;
}

.topLinks a {
    color: var(--col2);
	text-decoration: none;
}

.topLinks a:hover {
	color: var(--col3);
	text-decoration: underline;
}


/* --------------- FOOTER ----------------- */
footer {
    background-color: #333;
    color: var(--col1);
    padding: 10px;
    text-align: center;
    float: right;
    width: 100%;
}
#footTitle {
  color: var(--col1);
  font-size: 40px;
}
    
footer a {
    color: var(--col1);
    font-size: 20px;
}
    
footer a:hover {
    color: #ddd;
}
.faFoot {
  padding: 10px;
  font-size: 100px;
  width: 30px;
  text-align: center;
  text-decoration: none;
}
.smallerText {
  font-size: 12px; 
}
    
 /* --------------- END FOOTER ----------------- */   
    

@media (max-width: 700px) {
  .logoMain {
  width: 100%;
  padding: 10px;
}
.worEmbed {
 display: none;
}
  .logo {
  width: 80px;
    }

    .toggle-button {
        display: flex;
        top: 3rem;
        
    }
    .topLinks {
    text-align: center;
  }   
    .homeBox {
		clear: both;
		width: 100%;
	}
    .navBar-links {
       display: none;
       width: 100%;
    }

    .navBar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navBar ul {
        width: 100%;
        flex-direction: column;
    }
    .navBar-links li {
        text-align: center;
        border: 1px solid var(--col4);
    }

    .navBar-links li a {
        padding: .5rem 1rem;
    }

    .navBar-links.active {
        display: flex;
    }
    .fullLengthImage {
    width: 300px;
    }
}








