body {
    background-color: aliceblue;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.tribute {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 30px;
}

p {
    color: #444;
    font-size: 18px;
    line-height: 1.6;
}

.quote {
    font-style: italic;
    color: #1a73e8;
    font-size: 20px;
    margin-top: 15px;
}

footer {
    margin-top: 40px;
    padding: 10px;
    color: #888;
    font-size: 14px;
}

