ul {
    display: flex;
    justify-content: space-around;
    
}

section {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
}

p {
    color: white;
    background-color: gray;
    text-align: center;
    width: 200px;
    border-radius: 10px;
    padding: 5px;
}

a {
    color: orange;
}