/*
<!-- Bootstrap CDN-->

<!-- Latest compiled and minified CSS -->
*/
@import url(https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css);

body {
    font-family: monospace;
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    color: #f0f0f0;
}
.card {
    display: inline-block;
    max-width: 800px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    border-radius: 4px;
    background: #2b2b2b;
    padding: 20px;
    color: #ffffff;
}
h2 {
    color: #f8f8f8;
    text-align: left;
    white-space: nowrap;
}
.description {
    color: #f8f8f8;
    text-align: left;
    hyphens: auto;
}
.profile-img {
    max-width: 120px;
    height: auto;
    border-radius: 4px;
}
.card-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.story {
    margin-top: 20px;
    color: #e0e0e0;
}
.btn-section {
    margin-top: 20px;
}
.btn-primary {
    background-color: #666;
    border: none;
    color: #fff;
}
.btn-primary:hover {
    background-color: #888;
}
@media (max-width: 768px) {
    body {
        padding: 20px 0;
    }
    .card {
        border-radius: 0;
        box-shadow: none;
        width: 100%;
    }
}