.container {
    display: flex;
    align-items: center;
    margin-left: 100px;
    margin-top: 40px;
}

.investor-card {
    width: 550px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 3px solid black;

}

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

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.role {
    font-size: 20px;
    color: #888;
}

.comment {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.investment-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.detail {
    text-align: center;
}

.detail span {
    display: block;
    font-size: 12px;
    color: #888;
}

.detail strong {
    font-size: 20px;
    color: #333;
}

.vote-btn {
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.vote-btn:hover {
    background-color: #333;
}

.info-section {
    margin-left: 200px;
    margin-right: 100px;
}

.info-section h2 {
    font-size: 3em;
    margin-bottom: 10px;
    font-family: 'bely-display, sans-serif';
}

.info-section p {
    font-size: 20px;
    color: #555;
}