.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
.button {
transition: transform 0.2s ease;
.button:hover {
transform: scale(0.95);
.fade-in {
opacity: 0;
animation: fadeIn 1s forwards;
@keyframes fadeIn {
to { opacity: 1; }