* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
 }
 
 html {
 	overflow-y: scroll;
 	height: 100%;
 	font-family: 'Jost', sans-serif;
 	font-weight: 300;
 	font-size: 125%;
 	word-wrap: break-word;
 	margin: 0 auto;
 	padding: 1.5em;
 }
 
 @media (min-width: 768px) {
    html {
        max-width: 42em;
 	}
 }
 
 a {
    color: #ff8080;
    text-decoration: none;
 }
 
 
a:hover, a:focus, a:active {
    text-decoration: underline;
}
 
 .name {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 0.4rem;
}

 .tagline {
	font-size: 0.85rem;
	font-weight: 300;
	margin-bottom: 3rem;
	color: #696969;
}

.contact-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
}

.contact-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.contact-label {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #404040;
}

.contact-value a {
	font-size: 0.95rem;
	font-weight: 300;
}




