body {
    background: #1e1e1e;
    color: #e6e6e6;
    font-family: system-ui, sans-serif;
    padding: 2rem;
    max-width: 400px;
    margin: auto;
}
a {
    color: #6fcf97;
    text-decoration: none;
    cursor: pointer;
}
#about-text {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: 2rem;
}
#pet-flavor-text {
    font-style: italic;
    color: #aaaaaa;
}
.text-line {
    text-align: center;
    margin-bottom: 1rem;
}
#reset-link {
    text-align: center;
    padding:2rem;
}

#pet {
    text-align: center;
    margin-bottom: 1rem;
}
#pet-name-input {
    justify-self: center;
}
#pet-face {
    font-size: 3rem;
}

.stat {
    margin: 0.5rem 0;
}

.bar {
    background: #333;
    border-radius: 4px;
    overflow: hidden;
    height: 12px;
}

    .bar > div {
        height: 100%;
        background: #6fcf97;
        width: 50%;
        transition: width 0.3s;
    }

button {
    margin-top: 1rem;
    width: 100%;
    padding: 0.6rem;
    background: #333;
    color: white;
    border: 1px solid #444;
    border-radius: 4px;
    cursor: pointer;
}

    button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        border-color: #333333;
    }