@charset "UTF-8";

body {
 	font-family: verdana, Arial, sans-serif;
 	color: white; 
	background-color: Black;
}

header {
 	background-color: red;
  	color: black;
 	height: 100px; 
     justify-content: center;
    align-items: center;
   text-align: center;
}

nav {
            background-color: red; /* Blue background color for the navigation bar */
            overflow: hidden;
            display: flex;
            justify-content: center;
         }
      nav a {
            display: block;
            color:black;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            margin: 0 5px;
        }
nav a:hover {
	color: white;
	}

h2 {
    text-align: center;
}


section {
    height: 100vh;
min-height: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
 color: red;
}

img{
width: 500px;
height: 500px;
}

.pic-cap {
	
	height: 500px;
	width: 500px;
	
}

footer {
  text-align: center;
    padding: 50px;
 	background-color: red;
 	height: 125px; 
  	color: black;

}


