body {
     background-color: bisque;
}
h1 {
    color: rgb(43, 43, 43);
    display: flex;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
}
section {
    background-color: white;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}
nav {
    display: flex;
    justify-content: center;
    background-color: antiquewhite;
    padding: 15px;
    border-radius: 40px;
}
nav a {
    color: rgb(65, 65, 65);
    text-decoration: none;
    padding: 10px 15px;
}
nav a:hover {
    background-color: blanchedalmond;
    border-radius: 10px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1)
}
div{
    display: flex;
    justify-content: center;
    background-color: rgb(248, 226, 198);
    padding: 20px;
}
div a{
    padding: 100px 105px;
}
p {
    display: flex;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
}