/* *********************************************
General
********************************************* */

body {
	background-color: #fafafa;
	height: 100vh;
}

.fullwidth {
    width: 100%;
}

h1 {
    font-family: helvetica;
}

h2 {
    font-family: helvetica;
}

p {
    font-size: 1.25em;
    font-family: helvetica;
    line-height: 1.6;
}

li {
    font-size: 1.25em;
    font-family: helvetica;
    line-height: 1.6;
}

/* unvisited link */
a:link {
    color: blue;
}

/* visited link */
a:visited {
    color: black;
}

/* mouse over link */
a:hover {
    color: gray;
}

/* selected link */
a:active {
    color: dodgerblue;
}




/* *********************************************
center-title class
********************************************* */

.center-title {
    text-align: center;
}

.center-title a {
    color: black;
}


/* *********************************************
topics class
********************************************* */

.topics {
    margin: 25px 50px;
}


/* *********************************************
warning class
********************************************* */

.warning {
    color: red;
    font-weight: bold;
}


/* *********************************************
contact class
********************************************* */

.contact {
    text-align: center;
    margin-top: 150px;
}

/* *********************************************
Media Query
********************************************* */

/* Tablet and Desktop Menu */
@media screen and (max-width: 717px) {
	.medlarge {
		display: none;
	}
}

/* Mobile Menu */
@media screen and (min-width: 718px) {
	.small {
		display: none;
	}
}

/* Contact email sizing */
@media screen and (max-width: 350px) {
	.tiny {
		font-size: .8em;
	}
}



