@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sometype+Mono&display=swap');

body {
	font-family: "Special Elite";
	color: #696969;
	background-color: #e4d5b7;
}

a {
	text-decoration: none;
}


#headshot {
	text-align: center;
	padding-top: 150px;
}

#head-links {
	position: absolute;
	top: 0;
	right: 0;
	padding-top: 10px;
	padding-right: 20px;
	text-align: right;
	text-size: 16px;
}

#content {
	width: 75%;
	margin-right: auto;
	margin-left: auto;
	line-height: 1.5;	
}

#content p {
	font-family: Sometype Mono;
}

.subheading {
	font-weight: bold;
	font-size: 150%;
}

.subheading-right {
	font-weight: bold;
	font-size: 150%;
	text-align: right;
}

.subheading-center {
	font-weight: bold;
	font-size: 150%;
	text-align: center;
}

.subsubheading-center {
	font-weight: bold;
	font-size: 125%;
	text-align: center;
	text-decoration: underline;
}

.iconic {
    display: flex; /* Establishes flex container */
    align-items: center; /* Vertically aligns items in the center */
	justify-content: center;
}

.iconic p {
    margin: 0; /* Removes default margin from paragraph */
    margin-left: 20px; /* Optional: Adds space between text and image */
}

.iconic	 img {
    max-width: 200px; /* Adjust the image size */
    height: auto;
}

ul.custom-bullets {
    list-style-type: none; /* Remove default bullets */
    padding: 0; /* Remove any default padding from the list */
	margin: 0;
	line-height: 64px;
	text-align: left
}

ul.custom-bullets li {
    background-repeat: no-repeat;
    background-position: 0 50%; /* Align image vertically in the center */
    padding-left: 80px; /* Increase padding to fit the 64px image */
    background-size: 64px 64px; /* Adjust size of the image */
}

.bullet-1 {
    background-image: url('portfolio/images/icon_bike.png');
}

.bullet-2 {
    background-image: url('portfolio/images/icon_music.png');
}

.bullet-3 {
    background-image: url('portfolio/images/icon_sales.png');
}

.bullet-4 {
	background-image: url('portfolio/images/icon_game.png');
}

.centered {
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.center {
	text-align: center;
}