body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: auto;
}

.title {
    text-align: center;
    background: linear-gradient(to right, #ffa500, #ff00ff);
    color: white;
    padding: 20px;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-image: url('image/mutusi.jpg');
    background-color: rgba(255,255,255,0.8);
    background-blend-mode: lighten;
    background-repeat: repeat;
    background-position: right bottom;
    animation: scrollBackground 20s linear infinite;
}

@keyframes scrollBackground {
    0% {
        background-position: right bottom;
    }

    100% {
        background-position: left top;
    }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.profile-image {
    width: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.profile-text {
    background-color: #eaeaea;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

.profile-description {
    color: #333;
    text-align: center;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffa500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.message-board {
    margin-top: 40px;
}

h2 {
    margin-bottom: 20px;
}

form {
    margin-bottom: 20px;
}

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

input,
textarea {
    width: 100%;
    padding: 10px;
}

.messages-container {
    border-radius: 10px;
    padding: 10px;
}

.message {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.timestamp {
    color: #666;
    margin-bottom: 5px;
}

.name,
.subject,
.message-content {
    margin: 0;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    background-color: #ffa500;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
}

@media only screen and (max-width: 600px) {
    .profile-container {
        flex-direction: column;
    }

    .profile-text {
        margin-top: 20px;
    }
}

.form-container {
    background-color: #f1f1f1;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 10px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
    }

.form-input {
    width: 100%;
    padding: 5px;
    font-size: 16px;
}

.submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

    .submit-button:hover {
        background-color: #45a049;
    }

.message-form {
    margin-bottom: 20px;
}
