.app {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 20px;
    padding: 10px 20px 40px;
}

.app__title {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 28px 0 4px;
    display: flex;
    align-items: center;
}

/* Tally light next to the wordmark: red = the app is armed and ready to capture */
.app__title::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 14px;
    background: var(--accent-color);
    box-shadow: 0 0 14px 2px var(--accent-color);
    animation: tally-pulse 2.4s ease-in-out infinite;
}