body {
    font-family: Arial, sans-serif;
    background-color: #333;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
}

.mvp-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.mvp {
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

button {
    background-color: #5cb85c;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #4cae4c;
}

button.reset {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button.reset:hover {
    background-color: #c9302c;
}

input[type="time"] {
    margin: 10px;
    padding: 5px;
    width: 100%;
}

.mvp-image {
    max-width: 100%;
    height: 120px; /* Tamanho fixo para a imagem */
    object-fit: cover; /* Ajusta a imagem para cobrir o espaço reservado */
    border-radius: 10px;
    margin-bottom: 15px;
}

.progress-bar-container {
    width: 100%;
    background-color: #777;
    border-radius: 10px;
    margin: 10px 0;
}

.progress-bar {
    height: 20px;
    background-color: yellow;
    border-radius: 10px;
    width: 0%;
    transition: background-color 0.3s ease;
}

.progress-bar.green {
    background-color: green;
}

.time-remaining {
    margin-top: 10px;
    font-size: 18px;
}

footer {
    margin-top: 20px;
    font-size: 14px;
}

footer a {
    color: #5cb85c;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
