[html]<style>
.shipro-card {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
margin: 20px auto;
max-width: 900px;
background: #171b1c; /* Цвет темный задника*/
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shipro-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.shipro-image {
width: 100%;
max-width: 300px;
aspect-ratio: 1 / 1;
background-size: cover;
background-position: center;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
margin: 20px 20px;
transition: transform 0.3s ease;
}
.shipro-card:hover .shipro-image {
transform: scale(1.25);
}
.shipro-info {
text-align: center;
font-family: "Arial", sans-serif;
padding: 20px;
}
.shipro-info h5 {
font-size: 24px;
margin: 5px;
color: #b8b2a8; /* Заголовок*/
}
.shipro-info em {
font-size: 14px;
color: #6c6c6c; /* Цвет текста под заголовком*/
margin-bottom: 10px;
display: block;
}
.shipro-description {
font-size: 14px;
color: #949494; /* Главный текст */
text-align: justify;
line-height: 1.5;
text-indent: 30px;
max-height: 200px;
overflow: hidden;
padding: 0 10px;
transition: max-height 0.3s ease;
}
.shipro-card:hover .shipro-description {
max-height: 500px;
}
.shipro-description p {
margin: 0 !important;
padding: 0 !important;
font-size: 14px !important;
}
</style>
<div class="shipro-card">
<div class="shipro-info">
<h5>ДОПРОС С ПРИСТРАСТИЕМ</h5>
<div class="shipro-description">
<center><div class="shipro-image" style="background-image: url('https://64.media.tumblr.com/e270e7561f8fface29852231410f67b4/a44fc40695d2ef19-1a/s540x810/b806cc28bcafadea8817abeef971c44fe7606ce2.gif');"></div></center> <!-- сюда ссылку на свою картинку --><br>
<br>
Вначале каждого месяца в эту тему будет выкладываться один вопрос относительно вашего ролевого опыта или вашего персонажа, на который вам предстоит ответить чем более развёрнуто, тем лучше. А за каждые 5 ответов вы будете получать $. Если вы не успели ответить на какой-либо из вопросов - просто ответьте на него вместе с текущим.
</div>
</div>
</div>
<!-- Можете поставить следом ещё одну такую же про другого персонажа -->
[/html]