body {
	background-color: #cccccc;
	font-family: Arial, sans-serif;
	text-align: center;
}

.container {
	margin: 0 auto;
	padding: 20px;
	max-width: 600px;
	border-radius: 10px;
	/* Using more muted, less bright colors */
	background: linear-gradient(to right, lightcoral, sandybrown, khaki, darkseagreen, lightblue, mediumpurple, plum);
	background-size: 200% 200%;
	animation: rainbow 20s ease infinite;	color: #333;
}

.container.paused {
	animation-play-state: paused;
}

.container p {
	color: black;
	font-weight: bold;
	font-size: 16px;
}

.container img {
	display: block;
	margin: 0 auto 20px;
	border: 5px solid grey;
	border-radius: 50%;
	width: 100%;
	max-width: 200px;
	height: auto;
}


h1 {
	font-size: 42px;
}


.home-nav a {
	text-decoration: none;
	color: #00008B;
	font-weight: bold;
	font-size: 18px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #00008B;
    font-weight: bold;
}

@keyframes rainbow {
	0% {background-position: 0% 50%;}
	50% {background-position: 100% 50%;}
	100% {background-position: 0% 50%;}
}

footer {
	position: relative;
	bottom: 0;
	right: 0;
	padding: 10px;
	color: black;	width: 100%;

	text-align: center;
  }

.home-nav {
	margin: 10px 0 20px 0;
	border-radius: 25px;    
    font-size: small;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    background-color: aliceblue;  
}