html {
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-size: 1.4em;
}

html,
body {
    margin: 0px;
    padding: 0px;
}

input {
    padding: 10px;
    border-radius: 3px;
    border: 2px solid #444;
    font-weight: bold;
    font-size: 0.8em;
}

button {
    padding: 15px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 7px;
}

.mainContainer {
    padding: 15px 10px;
    height: 100dvh;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.settingsContainer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 600px;
    padding-bottom: 15px;
}

.timerContainer {
    display: none;
    max-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    padding-bottom: 15px;
}

.pushupContainer {
    display: none;
    max-height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inputContainer {
    display: flex;
    flex-direction: column
}

.timerArea {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center
}

#start,
#pushupsDone {
    background-color: #4CAF50;
    color: white;
    border: none;
}

#cancel {
    background-color: #f44336;
    color: white;
    border: none;
}

#start:hover,
#cancel:hover,
#pushupsDone:hover {
    cursor: pointer;
}