.pomodoro-app {
    background-color: var(--green-2);
    padding: 4em 2em;
    border-radius: 10px;

}

.section-container {
    display: flex;
    gap: 1em;
    justify-content: center;
}

.btn {
    padding: 1em 2em;
    border-radius: 40px;
    background-color: var(--green-3);
    color: var(--green-1);
}

.btn-focus {
    background-color: var(--primary-color);
    color: white;
}

.time-btn-container {
    display: flex;
    flex-direction: column;
    margin-top: 2em;
}

#time {
    text-align: center;
    color: white;
    font-size: 5em;
    font-weight: 600;
}

.btn-container {
    display: flex;
    justify-content: center;
    gap: 2em;
}

#btn-start, #btn-pause {
    padding: 1em 2em;
    border-radius: 40px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: white;
}

#btn-reset {
    background-color: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 2em;
}

.hide {
    display: none;
}

.show {
    display: block;
}