body {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1
{
    width: auto;
    margin: auto;
    text-align: center;
    color: grey;
    text-decoration: underline;
}

.box {
    margin: 20px;
    font-family: arial;
    font-size: 2rem;
    background-color: #70b3ff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.box a:link {
    text-decoration: none;
    color:rgb(77, 77, 77);
}

.box a:visited{
    color:rgb(77, 77, 77);
    text-decoration: none;
}

.box a:hover {
    text-decoration: underline;
    color: black;
}

#input {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
    text-align: center;
}

#rechercheservice {
    width: 80%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

#servicebloc {
    width: 100%;
    max-width: 500px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#listeservice {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#listeservice li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: #333;
}

#listeservice li:last-child {
    border-bottom: none;
}

#listeservice li:hover {
    background-color: #f8f8f8;
}