


/* start dark mode styling */
	@media (prefers-color-scheme: dark) {
		:root {
			--text: white;
			--border: #03011a;
			--accent: #Cbb799;
			--bg:#C3b091;
			--gradientBottom: #03011a;
			--gradientTop: #Cbb799;
			a:link { color: lightblue; }
		}

	
/* end dark mode styling */


* { 
	box-sizing: border-box;
}
body {
  min-height: 100vh;
  margin: 0;

  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */

  background: url(Sebbckgrntry1.jpg) no-repeat center / cover fixed;

}

  .container {
  max-width: 45rem;
  width: 100%;
  overflow: hidden;

border: 5px solid #03011a;
  outline: 3px solid var(#03011a);
  border-radius: 0px;

  display: flex;
  flex-wrap: wrap;
  padding: 5px;
  gap: 5px;


  background-image: url(sebcontfinalz.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}     

/* these control the column widths */
.small { flex: 1 1 9%; }
.large { flex: 1 1 82%; }
.full { flex: 1 1 100%; }
.half { flex: 1 1 49%; }


header {
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 110px; /* change banner height here*/
	position: relative;
}
header span {
	font-size: 2.5rem;
	position: absolute;
	bottom: 0;
	right: 10px;
	margin: 10px;
	font-weight: bold;
	text-shadow: 1px 1px var(--text),
		-1px 1px var(--text),
		1px -1px var(--accent),
		-1px -1px var(--accent);
	color: var(--gradientTop);
}


nav {

	padding: 5px;
	
}
nav div {
	text-align: center;
	font-size: 1.25rem;
	margin: 5px 5px 10px 5px;
}
nav a {
	display: block;
	margin: 5px;
	background: var(--bg);
	border-radius: 5px;
	padding: 2px 7px; 
	color:#593C39;
}

nav a:hover, nav a:focus {
color:white;
}

/* optional button styling like in the preview */




section {
	

	padding: 5px;
}

body {
    font-family:georgia
}
footer {
	text-align: center;
	margin-bottom: 5vw;
	font-size: 0.8rem;
}
footer a { 
	text-decoration: none;
}


h1, h2, h3, h4, h5, h6, p  { 
	margin: 5px;
	line-height: 1.2;
}
h1 { 
	font-size: 1.4rem;
	letter-spacing: 2px;
	font-weight: normal;
	padding-bottom: 5px;
}
h2 { 
	font-size: 1.25rem;
	font-weight: normal;
	text-align: center;
	margin-bottom: 0.25rem;
}
h3 { 
	font-size: 1.05rem;
	font-weight: normal;
}
h4 { 
	font-size: 1rem;
	color: var(--accent);
	padding-left: 12px;
}
ul {
  margin-top: 0px;    /* Removes the top margin of the list */
}

/* prevents overflow on smaller screens */
img { max-width: 100%; }
pre { overflow-x: auto; }


a:hover, a:focus {
	font-style: italic;
}
a:visited {
	color: var(--accent);
}