

/* Set up responsive design. */
* {
  box-sizing: border-box;
}


/* Set columns for mobile phones: */
@media only screen and (max-width: 999px) {
  .col-s-1 {width: 100%; }
  .col-s-2 {width: 100%; }
  .col-s-3 {width: 100%; }
  .col-s-4 {width: 100%; }
  .col-s-5 {width: 100%; }
  .col-s-6 {width: 100%; }
  .col-s-7 {width: 100%; }
  .col-s-8 {width: 100%; }
  .col-s-9 {width: 100%; }
  .col-s-10 {width: 100%; }
  .col-s-11 {width: 100%; }
  .col-s-12 {width: 100%; }
  body {font-size: 14px;}
  .hidesmall {display:none;}
  
}

/* Set columns for larger screens over 1000px.   */
@media only screen and (min-width: 1000px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
  body {font-size: 24px;}
  .hidebig {display:none;}
  [class*="col-"] {
  float: left;
}
}




/* Create left aligned standard.  */
[class*="col-"] {
  padding: 15px;
}


/* Clear styles at end of div.  */
.row::after {
  content: "";
  clear: both;
  display: table;
}



/* Image size  */
img {
  max-width: 100%;
  width: 100%;
  height: auto;
}




/*  Set body of page  */
body {
  font-family: 'Noto Sans Multani', sans-serif;
  margin: 0px;
  color: #FFF;
  background-color: #333;
  position: relative;
  transition: background-color 2s ease-in-out 1s;
}



#header {
	position: sticky;
	top: 0;
	background-color: #333;
	transition: background-color 2s ease-in-out 1s;
	z-index: 5000;
}

#softballogy {
	max-width: 1600px;
	background-image: url('logo/tagline.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-origin: content-box;
}




.spacer {
	height: 50px;
}

.thirdscreen {
	height: 33vh;
	display: block;
}

.halfscreen {
	height: 50vh;
	display: block;
}

.twothirdscreen {
	height: 66vh;
	display: block;
}

.fullscreen {
	height: 100vh;
	display: block;
}

.white {
	background-color: #FFF;
	color: #444;
}

.gray {
	background-color: #444 !important;
}


/* Set columns for mobile phones: */
@media only screen and (max-width: 999px) {
	.image {
		width: 100%;
		min-height: 33vh;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
}

/* Set columns for larger screens over 1000px.   */
@media only screen and (min-width: 1000px) {
	.image {
		height: 100%;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
}

.text {
	min-height: 33vh;
	display: block;
}



h1, h2, h3, h4, h5, h6 {
	font-family: 'Poiret One', cursive;
	text-align: center;
	color: #4b0000;
}



