* {
    color: rgb(246, 245, 255)
}

html {
    height: 100%;
    margin: 0;
}
body {
    background-color: #413b61;
    font-family: "Stylish", serif;
    font-weight: 400;
    font-style: normal;
    height: 100%;
    margin: 0 10px;
    display: grid;
}

button {
    background-color: rgb(196, 196, 196);
    color: #000;
    cursor: pointer;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 576px;
    margin: auto;
    padding: 50px 0 75px;
}

.nav-heading {
    padding: 5px;
    font-weight: 900;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-heading-icon {
    background-image: url(images/icon/done-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    height: 25px;
    width: 25px;
    margin-right: 5px;
}
.nav-heading h2 {
    margin: 0;
    padding: 0;
}

.nav-buttons {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.nav-buttons li {
    margin: 5px;
    cursor: pointer;
}
.nav-buttons li:hover {
    background-color: #ffffff50;
}

.reports {
    background-image: url(images/icon/reports-icon.svg);
    background-position: center;
    background-size: 23px;
    background-repeat: no-repeat;
    background-color: #ffffff27;
    height: 35px;
    width: 35px;
    border-radius: 5px;
}
.settings {
    background-image: url(images/icon/setting-icon.svg);
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    background-color: #ffffff27;
    height: 35px;
    width: 35px;
    border-radius: 5px;
}
.profile {
    background-image: url(images/icon/profile-icon.svg);
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    background-color: #ffffff27;
    height: 35px;
    width: 35px;
    border-radius: 5px;
}
.three-dot-menu {
    background-image: url(images/icon/three-dot.svg);
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    background-color: #ffffff27;
    height: 35px;
    width: 35px;
    border-radius: 5px;
}

main {
    justify-content: center;
    background-color: #ffffff27;
    border-radius: 5px;
    padding: 10px;
    max-width: 576px;
    margin: auto;
    margin-top: -50px;
}

.time-limit {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
}

.time-limit button {
    font-weight: 400;
    letter-spacing: 1px;
    background-color: transparent;
    border: none;
    font-size: 15px;
    color: aliceblue;
    border-radius: 5px;
    padding: 5px 10px;
}
.time-limit button:hover {
    font-weight: 600;
}

.time-countdown {
    justify-self: center;
    font-size: 120px;
}

.start-countdown-button {
    display: flex;
    margin: auto;
    background-color: rgb(246, 245, 255);
    padding: 15px 60px;
    font-size: 20px;
    font-weight: 600;
    color: #413b61;
    border: none;
    border-radius: 5px;
    border-bottom: 5px solid rgba(0, 0, 0, 0.192);
}
.start-countdown-button:hover {
    display: flex;
    margin: auto;
    background-color: rgb(255, 255, 255);
    padding: 15px 60px;
    font-size: 20px;
    font-weight: 600;
    color: rgb(0, 159, 180);
    border: none;
    border-radius: 5px;
    border-bottom: 5px solid rgba(0, 0, 0, 0.192);
    box-shadow: 0 0 10px rgb(0, 217, 255);
}

#task {
    justify-items: center;
    background-color: #ffffff27;
    border-radius: 5px;
    padding: 15px;
    margin-top: 25px;
}

.current-task {
    display: grid;
    flex-direction: column;
    justify-items: center;
    border-radius: 5px;
    background-color: #00000027;
    width: auto;
    height: auto;
    padding: 5px;
}

.running-task-heading {
    padding: 5px;
    letter-spacing: 1px;
    font-size: 20px;
}

.running-task, .running-task-details {
    background-color: #00000027;
    border-radius: 5px;
    padding: 10px 10px;
    width: fit-content;
    text-align: center;
    font-size: 18px;
    opacity: 0.7;
    margin: auto;
}
.running-task-details {
    background-color: transparent;
}

summary:hover {
    cursor: pointer;
    background-color: #00000052;
}

.add-task {
    display: flex;
    align-items: center;
    font-size: 20px;
    border: 2px dashed #fffefe49;
    border-radius: 5px;
    background-color: #00000021;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
}

.add-task-icon {
    background-image: url(images/icon/add-icon.svg);   
    background-position: center;
    background-repeat: no-repeat;
    height: 25px;
    width: 25px;
    background-size: 25px;
    margin-right: 5px;
}

.add-task p {
    color:  #f0f8ffa8;
}

.add-task:hover {
    background-color: #ffffff27;
}
.add-task:hover.add-task p {
    color:  palegreen;
}
.add-task:hover .add-task-icon {
    background-image: url(images/icon/add-icon-hover.svg);   
}

footer {
    max-width: 576px;
    justify-items: center;
    margin: auto;
}

.footer-links {
    display: flex;
    justify-content: space-evenly;
    max-width: 100%;
    margin: auto;
}