/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: .05rem solid #fff;
}


/*
 * Base structure
 */
body {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	color: #ec8f00;
	height: 100%;
	background: #f2e8dc url("art/TF2025-bg1920x1080-r2.png");
	background-size: cover;
}

.cover-container {
  max-width: 1200px;
}

.wide-icons {
	width: 100%;
	max-width: 100%;
	padding: 0 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*
 * Header
 */
.masthead {
  margin-bottom: 2rem;
}

/*
 * Content
 */
.cover {
  padding: 0 1.5rem;
}


.logo {
	margin-top: 2rem;
	margin-bottom: 3rem;
	max-width: 100%;
	height: auto;
}

.lead {
	font-size: 100%;
	margin-bottom: 2rem;
}

/*
 * Footer
 */

.footer {
	font-size: 80%;
	color: #333333;
}

.footer-link {
	padding: 10px;
	width: 20%;
	max-width: 80px;
	height: auto;
}

.footer-mobile {
	padding-bottom: 40px;
}

/*
 * Responsive
 */
 

@media screen and (max-width: 767px) { /* phone */
	.lead {
		font-size: 120%;
	}
	.logo {
		margin-top: 0px;
		max-width: 120px;
	}
	.cover {
  		padding: 20px;
	}
  	.header-desktop-left {
     	display: none;
  	}
  	.header-desktop-right {
    	 display: none;
  	}
  	.footer-link {
    	padding: 6px;
    	max-height: 48px;
	}	
}

@media screen and (max-width: 480px) { /* small phone */
	.cover {
  		padding: 0px;
	}
  	.header-desktop-left {
     	display: none;
  	}
  	.header-desktop-right {
    	 display: none;
  	}
  	.footer-link {
    	padding: 6px;
	}
  	
}


@media screen and (min-width: 768px) { /* desktop */
	.lead {
		font-size: 150%;
		margin-bottom: 3rem;
	}
    .footer-mobile {
    	display: none;
    }
}

 
 
