body {
    font-family:arial, sans-serif;
    background-color: #f8f9fa;
    padding: 20px;
}

nav ul {
    display:flex;
    justify-content: space-around;
    list-style: none;
    background-color: #f8f9fa;
    padding: 10px 0;  
    margin:0;
}
nav ul li a {
    text-decoration: underline;
    color: orange;
    font-weight: bold;
}

section {
    display :flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    margin-top: 40px;
    gap: 20px;
}

section p {
    background-color: #555;
    color:white;
    padding:20px;
    border-radius: 5px;
    text-align: center;
    margin:10px;
    flex-grow: 1;
    flex-basis: 0;
}