body {
    font-family: Arial, sans-serif;
    background-image: url('https://source.unsplash.com/1600x900/?tropical-beach,madagascar');
    background-size: cover;
    background-position: center;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
}
h1 {
    text-align: center;
    color: #007BFF;
}
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
button {
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
button:hover {
    background-color: #0056b3;
}
#display {
    margin-top: 30px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    max-height: 300px;
    overflow-y: auto;
}
.entry {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

