body {
    font-family: Arial, sans-serif;
    background-color: #00acee;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.tweet {
    background-color: yellow;
    width: 400px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-details h3 {
    margin: 0;
    font-size: 16px;
}

.user-details p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

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

.actions {
    display: flex;
    justify-content: space-between;
}

.action-btn {
    padding: 8px 12px;
    border: none;
    background-color: #1da1f2;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.action-btn:hover {
    background-color: #0e91dc;
}

.foto {
    width: 60%;
    height: 50%;
}