* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


body {
  background-image: url('bg.jpg'); /* Replace with your image path */
  background-repeat: no-repeat;
  background-position: center center; /* Adjust as needed */
  background-size: cover; /* Adjust as needed */
  background-attachment: fixed;
}

nav {
	width: 400px;
	margin: 20px auto;
}

.menu {
	display: flex;
	justify-content: space-between;
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu-item {
	border: 1px solid red;
	outline: 0px solid red;
	outline-offset: 4px;
	display: inline-block;
	padding: 10px 20px;
	font-family: sans-serif;
}

.menu-item a {
	color: red;
	text-decoration: none;
}

.content-column {
	max-width: 960px;
	background-color: rgba(0, 0, 0, 0.7);
	margin: 0 auto;
}

.title {
	padding: 50px 0;
	color: white;
	font-family: 'Metamorphous', cursive;
    font-size: 5rem;
    color: #fff;
    text-align: center;
    text-shadow: 
		0 0 5px #ff0000,
        0 0 10px #ff0000,
        0 0 15px #ff0000,
        0 0 20px #ff0000,
        0 0 35px #ff0000,
        0 0 40px #ff0000,
        0 0 50px #ff0000,
        0 0 75px #ff0000;
	animation: pulsate 1.5s infinite alternate;
    letter-spacing: 4px;
}
        
@keyframes pulsate {
	0% {
		text-shadow: 
			0 0 5px #ff0000,
            0 0 10px #ff0000,
            0 0 15px #ff0000,
            0 0 20px #ff0000;
       }
            
    100% {
		text-shadow: 
			0 0 5px #ff0000,
			0 0 10px #ff0000,
			0 0 15px #ff0000,
			0 0 20px #ff0000,
			0 0 35px #ff0000,
			0 0 40px #ff0000,
			0 0 50px #ff0000,
			0 0 75px #ff0000;
         }
}


main {
	padding: 40px 50px;
	max-width: 900px;
	color: white;
	font-family: Consolas, Monaco, 'Andale Mono', monospace;
	
	line-height: 1.7em;
	
	margin: 0 auto;
}

main p {
	margin-bottom: 20px;
}

main a {
	 color: red;
	 
}

.my-image {
	margin: 0px auto;
	float: left;
	width: 375px;
	display: flex;
}

.selfie {
	width: 80%;
	border-radius: 0px 90px 0px 90px;
	border: 10px solid white;
	background-color: white;
	display: inline-block;
	margin: 10px auto;
}

footer p {
	color: white;
	text-align: center;
}
