body {
    font-family: Arial, sans-serif;
    background-color: #ffe9fb;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 95vh;
}

.center {
    text-align: center;
    width:  100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.button-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin: 20px 0 0 20px;
    transition: background-color 0.3s;
}

.button-link:hover {
    background-color: #45a049;
}

.tmp-button-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #bab3bc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin: 20px 0 0 20px;
    transition: background-color 0.3s;
}

.tmp-button-link:hover {
    background-color: #d0c9d2;
}

.ticker-tape-container {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.ticker-tape-list {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap:  1rem;
}

.ticker-tape-list span {
    padding: 0.25rem 1rem;
    border-radius: 10px;
    background-color: #86c5da;
}