

body {
	
	font-family: monospace;
	color: white;
	background-image: url(https://warpunderweather.neocities.org/oystermushrooms.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
}


.header-graphic {
    display: block;      /* Makes the image a block element so margins can center it */
    margin: 20px auto 10px; /* Centers the image horizontally, adds space above and below */
    max-width: 235px;    /* Controls the size of your graphic */
    height: auto;        /* Ensures the image doesn't get distorted */
}


nav ul li {
	font-size: 40px;
	font-family: serif;
	background-color: white;
	border: 2px solid black;
	letter-spacing: 0.1em;
	width: 5em;
	height: 1.5em;
	line-height: 1.5em;
	position: relative;
	overflow: hidden;
	margin: 0.5em;
	cursor: pointer;
}

nav ul li a {
	color: white;
	mix-blend-mode: difference;
}

nav ul li::before {
	content: '';
	position: absolute;
	width: 1.5em;
	height: inherit;
	background-color: black;
	border-radius: 50%;
	top: 0;
	left: -0.75em;
	transition: 0.5s ease-out;
}

nav ul li:hover::before {
	transform: scale(7);
}	
                           
  box-sizing: border-box;
}

:root {
  --color-primary: #f6aca2;
  --color-secondary: #f49b90;
  --color-tertiary: #f28b7d;
  --color-quaternary: #f07a6a;
  --color-quinary: #ee6352;
}

body {
  min-height: 100vh;
  font-weight: 300;
  font-size: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: #eff8e2;
}

.content {
  display: flex;
  align-content: flex-start;
  justify-content: flex-start;
}

.center-text {
    /* Optional: Style your text container */
    padding: 4px;
    font-size: 10px;
    text-align: center;
    width: 600px;
    
    /* Add a solid background color */
    background-color: black; /* A black background */
    
}
