body {
    font-family: Arial, sans-serif;
}

.twt-card {
    width: 90%;
    max-width: 600px;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background-color: #fff;
    padding: 20px;
}

.user-info {
    display: flex;
    align-items: center;
}

.user-info img {
    border-radius: 50%;
    margin-right: 10px;
}

.user-details h3,
.user-details h5 {
    margin: 0;
}

.follow-button {
    margin-left: auto;
    padding: 5px 10px;
    border: none;
    background-color: #1da1f2;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.follow-button:hover {
    background-color: #0d95e8;
}

.tweet-content {
    margin: 15px 0;
}

.actions button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
}

.actions button:hover {
    color: #1da1f2;
}

.actions {
    display: flex;
    justify-content: space-around;
}
