*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
    font-weight: bold;
}

body
{
    min-height: 100vh;
    background: #68b98a;
    overflow:hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    color: white;
    background-color: rgba(255,255,255, 0.10);
    border-radius: 2em;
    padding: 4em 3em;
}

.title
{
    font-size: 3em;
}

hr
{
    width: 100%;
    background-color: white;
    height: 5px;
    border-radius: 1em;
    border: none;
}

.timer
{
    font-size: 10em;
    font-weight: 700;
    padding: 0.3em 0.5em;
    border-radius: 0.3em;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
    white-space: nowrap;
    min-width: 8ch;
    text-align: center;
}

.timer:hover
{
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.1);
}
.button-wrapper
{
    display: flex;
    gap: 1em;
}

button
{
    font-size: 2em;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.5em 1.5em;
    border-radius: 0.5em;
    border: none;
    color:white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

button:hover
{
    transform: translateY(-10px);
}

#start
{
    background-color: rgb(86, 230, 14);
}

#stop
{
    background-color: rgb(246, 25, 25);
}

#reset
{
    background-color: rgb(24, 137, 242);
}

.scale-wrapper
{
    transform: scale(0.50);
    transform-origin: top center;
    margin-top: 7px;
}

