body{
    background-color: #9b59b6;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
   }
   .header, .footer{
    background-color: #f39c12;
    color: black;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    width: 80%;
    text-align: center;
    margin-top: 20px;
    box-shadow: 5px 5px 0px 0px #000000;
   }
   .timer{
    float: right;
    padding: 10px 20px;
    background-color: #ff000c;
    border: none;
    color: black;
    font-weight: bold;
    box-shadow: 2px 2px 0px 0px #000000;
    cursor: pointer;
}
.workout-container{
    background-color: #1abc9c;
    width: 80%;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 5px 5px 0px 0px #000000;
}
.workout-container input[type="text"], .workout-container input[type="number"]{
    padding: 10px;
    margin: 5px;
    border: 1px solid #000000;
    border-radius: 5px;
}
.workout-container button{
    padding: 10px 20px;
    background-color: #f39c12;
    border: none;
    color: black;
    font-weight: bold;
    box-shadow: 2px 2px 0px 0px #000000;
    cursor: pointer;
}
.workout-container hr {
    border: 1px solid #000000;
    margin: 20px 0;
}
.exercise-item {
    background-color: #1abc9c;
    padding: 10px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 2px 2px 0px 0px #000000;
    cursor: pointer;
}
.exercise-item span {
    font-size: 18px;
}
.exercise-item button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    box-shadow: 2px 2px 0px 0px #000000;
}
.footer button{
    background-color: #57f355;
    color: black;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    width: 100%;
    border: none;
    box-shadow: 5px 5px 0px 0px #000000;
    cursor: pointer;
}
@media (max-width: 768px) {
    .header, .footer, .workout-container { width: 95%; }
}

