:root {
    --white: #fff;
    --light-blue: #6a84a3;
    --bhs-orange: #f47421;
    --font-family: 'Roboto Condensed', sans-serif;
    --transition: .16s fill ease-in-out;
  }

html {
    font-size: 62.5%;
	min-height: 100%;
	height: 100%;
}

body {	
	background: url("../images/main-bg.jpg") no-repeat top center;
	font-family: var(--font-family);
	font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .04rem;
	color: var(--white);
	padding: 2rem;
}

a {
	color: var(--bhs-orange);
	text-decoration: underline;
}

a:hover {
	color: var(--bhs-orange);
}

/********************* MAIN BODY *************************/

.main {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
	margin: auto;
    max-width: 960px;
}

.content {
    width: 100%;
}

.region-select {
    color: var(--bhs-orange);
    font-weight: 700;
    margin-top: 2.5rem;
    text-align: center;
}

#map a path {
    fill: var(--light-blue);
    transition: var(--transition);
}

#map a:hover path {
    fill: var(--bhs-orange);
}

/********************* LAYOUT STYLES *************************/

.description {
    margin: 1rem auto;
}

.description h1 {
    font-size: 2rem;
    text-transform: uppercase;
}

/* ***************  FOOTER STYLES *************** */

.footer {
    margin-top: 6rem;
}

.social {
    display: flex;
    justify-content: space-between;
}

.social a {
    display: inline-block;
    margin: 0 1rem;
}

.social svg {
    fill: var(--white);
    height: auto;
    transition: var(--transition);
    width: 40px;
}

.social a:hover svg {
    fill: var(--bhs-orange)
}

@media all and (min-width: 769px) {
    body {
        padding: 4rem;
    }
    .mobile-region-select {
        display: none;
    }
}
