body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    font-family: Verdana, sans-serif;
}

.tweet-container {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.tweet {
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.tweet-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.name {
    font-weight: bold;
    margin-right: 5px;
}

.username {
    color: #666;
    margin-right: 5px;
}

.date {
    color: #999;
    font-size: 0.8em;
}

.tweet-content {
    margin-bottom: 10px;
}

pre {
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
    overflow-x: auto;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

h2 {
    font-size: 25px;
    color: #333;
}

.code-block {
    font-family: 'Courier New', Courier, monospace;
    overflow-x: auto;
    display: block;
    white-space: pre-wrap;
}
