/* Route-local styles for /brett/. */

.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.big-green-button {
    background-color: #22c55e;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 3rem;
    border: 10px solid #d4af37;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    width: 280px;
    height: 280px;
    line-height: 1.3;
}

.big-green-button:hover {
    background-color: #16a34a;
}

.big-green-button:active {
    transform: scale(0.98);
}

.thank-you-message {
    font-size: 1.5rem;
    color: #2d5a3d;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
