body {
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Initial gradient */
    background: linear-gradient(to right, #f6d365, #fda085);
}

.container {
    text-align: center;
    padding: 40px;
}

.title {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.name-display {
    font-size: 36px;
    color: black;
    margin-bottom: 30px;
}

.stat-container {
    text-align: center;
}

.stat {
    font-size: 24px;
    color: black;
    margin-bottom: 20px;
}

.start-button {
    display: block;
    padding: 15px 30px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
    transition: background-color 0.3s ease-in-out;
}

.next-button {
    display: none;
    padding: 15px 30px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
    transition: background-color 0.3s ease-in-out;
}

.next-button:hover {
    background-color: #2980b9;
}
