body {
    font-family: 'Almendra', serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

header {
    background: #5a7d9a; /* Blu pastello scuro */
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #b39ddb 3px solid; /* Viola pastello */
    font-family: 'Uncial Antiqua', cursive;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header h1 {
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header p {
    font-family: 'Almendra', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

form {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 10px;
}

form input[type="text"],
form input[type="date"],
form input[type="submit"] {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

form input[type="submit"] {
    background: #b39ddb; /* Viola pastello */
    border: 0;
    color: #fff;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background: #9575cd; /* Viola pastello più scuro */
}

h2 {
    color: #333;
    font-family: 'Uncial Antiqua', cursive;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

.results {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.results div {
    flex: 1 1 30%;
    margin: 10px;
    text-align: center;
}

.results img {
    max-width: 100%;
    height: auto;
}