/***************************************
			Generic Edits
***************************************/
html {
	visibility: visible;
}

#phone {
	text-align: left;
}

/*Styling for the "Contact Us" message*/
#title {
	display: none;
}

/*Overriding the default width from our genericStyling css*/
#content{
	font-size: .75em;
}

/*Styling for the contact info*/
#info {
	font-size: 1.5em;
}

/*Styling for the office hours information*/
#officeHours {
	font-size: .9em;
}

.w-100 {
	margin-top: 2%;
}

/*Makes our unordered list have no indentation or bullets*/
ul{
	list-style-type: none;
	padding: 0;
}

/*Links that are colored white and not underlined*/
#content a {
	color: #17468f;
	cursor: pointer;
	text-decoration: none;
}

/***************************************
		General Media Edits
***************************************/
@media screen and (min-width: 768px) {

	#phone {
		text-align: center;
	}

	/*We have to specify the width here again since we overrode it just now in the generic edits up top*/
	#content {
		font-size: 1em;
		width: 50%;
	}

	#title {
		display: block;
		font-size: 2em;
		margin-bottom: 2%;
	}
}
