@charset "utf-8";
/*
	Lucas Schiele
	Mid-Term Project
	10/28/2024
	
	portfolio.css
*/
@font-face {
    font-family: 'Open Sans';
    src: url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&display=swap') format('woff2');
    font-weight: normal;
    font-style: normal;
	font: 10px 'Open Sans', Arial, sans-serif;
}
html {
	background: #008000;
}
body {
	background-image: url("background.avif");
	background-size: cover;
	height: 100%;
	margin: 30px;
}
nav.horizontal {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 10px;
	
}

nav.horizontal li {
    display: inline;
	margin: 40px
}
nav.horizontal li > a:active {
    text-decoration: none;
	color: purple;
}
nav.horizontal li a:hover {
    text-decoration: none;
	color: purple;
}
nav.horizontal li a:link {
    text-decoration: none;
	color: purple;
}
nav.horizontal li a:visited {
    text-decoration: none;
	color: purple;
}
p {
	color: #008000;
	text-align: center;
}
h1 {
	color: purple;
	text-align: center;
}
section#img1 {
	text-align: center;
}
section#img2 {
	text-align: center;
}
section#img3 {
	text-align: center;
}
section#img4 {
	text-align: center;
}
figcaption{
	color: purple;
}
