body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 4.4em;
    margin: 0;
    color: #ff0000;
}

header h2 {
    font-size: 3em;
    margin: 0;
    color: #444;
}

header h3 {
    font-size: 2em;
    margin: 10px 0;
    color: #555;
}

header p {
    font-size: 1.2em;
    color: #777;
}

.tribute {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 100%;
    border: 5px solid #888888;
    margin-bottom: 30px;
}

.tribute p {
    font-size: 1.1em;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.tribute a {
    font-size: 2em;
    color: #929c00;
    max-width: 600px;
    margin: 0 auto;
}

.gallery {
    margin-bottom: 30px;
}

.gallery h3 {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.gallery h4 {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: -15px;
    color: #555;
}

.images {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.images img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
}

.messages {
    text-align: center;
}

.messages h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

#message-list {
    margin-top: 20px;
    text-align: left;
}

#message-list div {
    background-color: #f9f9f9;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}