body {
    font-family: "Open Sans", sans-serif;
    color: #282828;
    font-size: 24px;
    margin: 2em auto;
    max-width: fit-content;
    padding: 1em;
    line-height: 1.4;
    text-align: justify;
    background-color: #fefefe;
    justify-items: center;
    }

h1{
    text-decoration: 5px underline;
}
p{
    text-align: center;
    font-size: 12px;
    color: #454545;
}

input[type=text]{
    width: 100%;
    height: 40px;
    border: 3px solid #282828;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    box-sizing:border-box;
    font-family: "Open Sans", sans-serif;
}
input[type=text]:focus{
    outline: none;
    border: 3px solid #585858;
    font-family: "Open Sans", sans-serif;
}



#target{
    grid-column: span 2;
}



.inputs{
    display: grid;
    grid-template-columns: 5fr 1fr;
    gap: 1rem;
    width: 100%;
}

.timer{
    display: inline-block;
    box-sizing:border-box;
    width: 100%;
    height: 40px;
    border: 3px solid #282828;
    border-radius: 5px;
    text-align: center;
    align-content: center;
    font-weight: 700;
    font-size: 16px;
}

table {
    width: 416px;
    margin-top: 20px;
    border-collapse: collapse;
    font-family: "Open Sans", sans-serif;
 
}

table, th, td {
    border-top: 1px solid #ccc;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
}

th, td {
    padding: 10px;
    text-align: left;
    font-family: "Open Sans", sans-serif;
}
/* Progress bar */
#progress-container {
    width: 100%;
    height: 20px;
    background-color: #e8e8e8;
    margin: 20px 0;
    border-radius: 5px;
    overflow: hidden;
}

#progress-bar {
    height: 100%;
    width: 0;
    background-color: #50A550;
    transition: width 0.2s ease;
}