/* css for nickyruscoe.com */
html{
	font-size: 16px;
	font-family: "Avenir", "Lucida Grande", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: white;
}
body {
	text-align: left;
	background-color: rgba(0, 0, 0, 0.25);
	margin: 0;
	padding: 0;
}

/* STRUCTURE */
.container { 
	display: flex;
}
.row { 
	flex-direction: row; 
}
.top-left {
	position: absolute;
	top: 1rem;
	left: 1rem;
}
.text-indent { 
	padding-left: 1.5%;
}
.details { 
	margin-top: 9vh;
	margin-top: clamp(1rem, 8vh, 9vh);
	max-width: 90vw;
}
.ul-head { 
	margin-bottom: -.8rem;
}

/* TEXT MODIFIERS */
/* if the browser supports clamp it will overide the preceding item */
.h1-large {
	font-size: 4rem;
	font-size: clamp(4rem, 8.5vw, 9rem);
	max-width: 50vw;
	max-width: clamp(50vw, 55vw, 56vw);
	font-weight:lighter;
	text-align: left;
	line-height: 1;
	margin: 0;
}
.subtext {
	font-size: 5vh;
	font-size: clamp(1.8rem, 2.8vw, 5rem);
	margin-top: .5rem;
	max-width: 40vw;
	max-width: clamp(40vw, 40vw, 55vw);
}
p { 
	font-size: 4vh;
	font-size: clamp(1.4rem, 2.3vw, 4rem);
}
ul { 
	text-align: left; 
}
li {
	font-size: 3.5vh;
	font-size: clamp(1.4rem, 2.3vw, 3rem);
	margin-bottom: .5rem;
	white-space: nowrap;
}
a { 
	color: #ffffff;
}