@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: 7px 8px;

            text-decoration: none;
            margin: 0 5px;
        }
nav a:hover {
	color: white;
	}


h2 {
    text-align: center;
}


section {
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  color: red;
}

img{
width: 300px;
height: 300px;
}


footer {
  text-align: center;
    padding: 50px;
	background-color: red;
 	height: 125px; 
  	color: black;

}


