body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

h1 {
    text-align: center;
    color: #333;
}

.question {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
}

.question:last-child {
    border-bottom: none;
}

.question .content {
    flex: 1;
}

.question .upvote {
    cursor: pointer;
    color: #888;
}

.question .upvote:hover {
    color: #000;
}

.question .votes {
    margin-left: 10px;
    font-weight: bold;
    color: #333;
}
