* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    background: whitesmoke;
}

.wrapper {
    max-width: 50vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
}

h1 {
    font-size: 70px;
    font-style: italic;
    text-decoration: underline;
}

h2 {
    font-size: 50px;
    margin: 20px 0;
}

main {
    margin-bottom: 50px;
    width: 100%;
}

.slideRules {
    background: navy;
    color: white;
    font-size: 30px;
    padding: 10px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
    letter-spacing: 2px;
}

#rules {
    background: lightblue;
    font-size: 25px;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: none;
    letter-spacing: 2px;
}

.taskProgress, .timeProgress {
    position: fixed;
    left: 50px;
    top: 60vh;
    padding: 10px;
    width: 400px;
    height: 400px;
    text-align: center;
}

.timeProgress {
    top: 10vh;
}

.taskProgress p, .timeProgress p {
    margin-bottom: 20px;
    font-size: 30px;
}

#changeMusic {
    border: none;
    background: lightblue;
    padding: 5px 10px;
    font-size: 20px;
    border-radius: 15px;
    cursor: pointer;
    margin: 10px auto;
}

#changeMusic:hover {
    background: rgb(162, 196, 209);
}

.audio {
    margin: 20px 0;
    text-align: center;
    display: none;
}

#start {
    width: 250px;
    font-size: 40px;
    background: navy;
    color: white;
    border-radius: 20px;
    margin: 20px 0;
    padding: 20px 10px;
    cursor: pointer;
    text-align: center;
}

#start:hover {
    background: rgb(2, 2, 97);
}

.answer {
    width: 50%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

#inputTask1 {
    flex-grow: 3;
    border: none;
    border-bottom: 1px solid black;
    background: none;
    font-size: 25px;
    padding: 10px;
    outline: none;
}

#btnTask1 {
    flex-grow: 1;
    background: navy;
    color: white;
    border: none;
    font-size: 25px;
    padding: 10px;
    cursor: pointer;
}

#btnTask1:hover, #nextTask:hover {
    background: rgb(2, 2, 97);
}

#nextTask {
    width: 150px;
    background: navy;
    color: white;
    border-radius: 20px;
    padding: 10px;
    font-size: 25px;
    text-align: center;
    position: fixed;
    right: 100px;
    top: 50vh;
    display: none;
}