h1 {
  padding-right:5%;
  padding-top: 5%;
  font-size: 30px;
  border: 2px solid black;
outline: #af594c solid 5px;
margin: auto;  
padding: 20px;
text-align: center;
}
nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: rgb(255, 249, 249);
z-index: 999;
padding: 10px 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
}

nav ul li {
margin-right: 10px;
}

nav ul li:last-child {
margin-right: 0;

}

nav ul li a {
text-decoration: none;
cursor: pointer;
font-size: 16px;
color: #333;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s ease;
background-color:lightblue;
letter-spacing: 3px;  
}

nav ul li a:hover {
background-color: #dddddd;
}

section {
height: 700px;
display: flex;
align-items: center ;
justify-content: center;
text-align: center;
opacity: 0;
transition: opacity 0.5s ease-in-out;
margin-top: 50px; /* Add margin to account for fixed navigation */
}
#about {
background-color: #f2f2f2;
}

#contact {
background-color: #e6e6e6;
}

#portfolio {
background-color: #f9f9f9;
}

.show {
opacity: 1;
}
body {
overflow: hidden;
}