@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;700&display=swap");
body, header, main, footer, h1, h2, h3, h4, h5, section, article, p, time, div, button, form, input, label, textarea, select, option, template, dialog {
  margin: 0;
  padding: 0;
  font-size: 100%;
  text-decoration: none;
  font-weight: normal;
  border: none;
  background: none;
  background-color: transparent;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font: 400 1.6rem/1.6 "Raleway", sans-serif;
  background-color: #d3d3d3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

button:focus, input:focus, select:focus, textarea:focus {
  border: solid 3px #0000ff;
}

header, footer {
  margin: 2rem;
  padding: 2rem;
  background-color: #fff;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 650px) {
  header, footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@-webkit-keyframes loadingMessage {
  to {
    left: 100%;
  }
}

@keyframes loadingMessage {
  to {
    left: 100%;
  }
}

h1 {
  font: 700 3rem "Raleway", sans-serif;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

h2 {
  font: 500 2rem "Raleway", sans-serif;
}

#loading {
  margin: 20% auto 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  letter-spacing: .3rem;
}

#loading::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #d3d3d3;
  -webkit-animation: loadingMessage 3s ease infinite;
          animation: loadingMessage 3s ease infinite;
}

section h2 {
  text-transform: uppercase;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  text-align: center;
}

@media (min-width: 1150px) {
  section h2 {
    text-align: left;
    padding-left: 2rem;
  }
}

section:nth-child(1) h2 {
  color: #ff0000;
}

section:nth-child(1) .task {
  border-left: solid 4px #ff0000;
}

section:nth-child(2) h2 {
  color: #ffff00;
}

section:nth-child(2) .task {
  border-left: solid 4px #ffff00;
}

section:nth-child(3) h2 {
  color: #008000;
}

section:nth-child(3) .task {
  border-left: solid 4px #008000;
}

footer p {
  font-size: smaller;
}

h3, h4, h5 {
  font-size: 1.8rem;
  border-bottom: .1px solid #d3d3d3;
  padding-bottom: 1rem;
}

section {
  margin: 2rem;
  padding: 1rem;
  background-color: #a9a9a925;
}

@media (min-width: 650px) {
  section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (min-width: 1150px) {
  section {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

[class*="icon"] {
  color: #a9a9a9;
  font-size: 1.5rem;
}

[class*="icon"]::before {
  font-family: "Material Icons";
  font-size: 1.8rem;
  vertical-align: text-bottom;
}

[class*="add"] {
  border: 1px solid #a9a9a9;
  border-radius: 1.5rem;
  margin-left: 2rem;
  padding: .6rem;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

[class*="add"]::before {
  content: "post_add";
  content: "post_add"/"";
}

[class*="add"]:hover {
  cursor: pointer;
  color: #a9a9a9;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

[class*="add"]:active {
  color: #fff;
}

[class*="edit"] {
  font-size: 0;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  -ms-grid-row: 3;
  -ms-grid-column: 4;
  grid-area: edit;
      justify-self: end;
}

[class*="edit"]::before {
  content: "edit";
  content: "edit"/"";
}

[class*="edit"]:hover {
  cursor: pointer;
  color: #0000ff;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

[class*="edit"]:active {
  color: #fff;
}

[class*="delete"] {
  font-size: 0;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  grid-area: delete;
      justify-self: end;
}

[class*="delete"]::before {
  content: "delete_forever";
  content: "delete_forever"/"";
}

[class*="delete"]:hover {
  cursor: pointer;
  color: #ff0000;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

[class*="delete"]:active {
  color: #fff;
}

[class*="stop"] {
  font-size: 0;
  border: 1px solid #a9a9a9;
  border-radius: 1.5rem;
  margin: 0;
  padding: 0.6rem;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

[class*="stop"]::before {
  content: "music_off";
  content: "music_off"/"";
}

[class*="stop"]:hover {
  cursor: pointer;
  color: #a9a9a9;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

[class*="stop"]:active {
  color: #fff;
}

[class*="play"] {
  font-size: 0;
  border: 1px solid #a9a9a9;
  border-radius: 1.5rem;
  margin: 0;
  padding: 0.6rem;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

[class*="play"]::before {
  content: "music_note";
  content: "music_note"/"";
}

[class*="play"]:hover {
  cursor: pointer;
  color: #a9a9a9;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

[class*="play"]:active {
  color: #fff;
}

@media (min-width: 1150px) {
  main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.blur {
  -webkit-filter: blur(10px) brightness(0.8);
          filter: blur(10px) brightness(0.8);
}

.task {
  margin: 2rem;
  padding: 2rem;
  background-color: #f5f5f5;
  border-radius: .5rem;
  -webkit-filter: drop-shadow(0.2rem 0.2rem 0.2rem #686868);
          filter: drop-shadow(0.2rem 0.2rem 0.2rem #686868);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 15rem (1fr)[2] 4rem 4rem;
      grid-template-columns: 15rem repeat(2, 1fr) 4rem 4rem;
      grid-template-areas: "title title title title title" "mainpar mainpar mainpar mainpar mainpar" "date . . edit delete";
}

.task__title {
  font-weight: 500;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: title;
}

.task p {
  color: #7c7c7c;
  margin: 1rem 0 2rem 0;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: mainpar;
}

@media (min-width: 650px) {
  .task {
    width: calc(100%/2 - 4rem);
  }
}

@media (min-width: 950px) {
  .task {
    width: calc(100%/3 - 4rem);
  }
}

@media (min-width: 1150px) {
  .task {
    width: calc(100% - 4rem);
  }
}

time {
  font-size: 1.2rem;
  font-weight: 700;
  color: darkgoldenrod;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: date;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

form {
  padding: 2rem;
  position: fixed;
  top: 15%;
  bottom: 15%;
  background-color: #fff;
  overflow-y: scroll;
  z-index: 1;
}

@media (min-height: 700px) {
  form {
    bottom: unset;
    overflow: unset;
  }
}

form h3, form h5 {
  text-transform: uppercase;
  font-weight: 700;
}

form button {
  background-color: #a9a9a925;
  border-radius: .5rem;
  margin-left: 2rem;
  padding: .6rem;
  color: #a9a9a9;
}

form button[type=submit] {
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

form button[type=submit]::before {
  content: "";
  content: ""/"";
}

form button[type=submit]:hover {
  cursor: pointer;
  color: #008000;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

form button[type=submit]:active {
  color: #fff;
}

form button[type=button] {
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

form button[type=button]::before {
  content: "";
  content: ""/"";
}

form button[type=button]:hover {
  cursor: pointer;
  color: #ff0000;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

form button[type=button]:active {
  color: #fff;
}

form div {
  padding: 2rem 0 2rem 0;
}

#taskForm {
  width: 60%;
  left: 20%;
}

#taskForm label {
  display: block;
}

#taskForm #title {
  background-color: #a9a9a925;
  width: 100%;
  height: 4rem;
  border-radius: 1rem;
  text-indent: 1rem;
}

#taskForm #descrip {
  background-color: #a9a9a925;
  width: 100%;
  height: 10rem;
  border-radius: 1rem;
  padding: 1rem;
}

#taskForm select {
  width: 100%;
  height: 3rem;
  background-color: #a9a9a925;
}

#taskForm #date {
  background-color: #a9a9a925;
}

#taskForm #formButtons {
  border-top: solid .1px #d3d3d3;
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#taskForm .error {
  border: solid 2px #ff0000;
}

#taskForm .errorLabel {
  color: #ff0000;
  font-size: 1.4rem;
}

#taskForm :focus {
  border: solid 3px #0000ff;
}

#musicForm {
  width: 40%;
  left: 30%;
}

#musicForm label {
  margin-left: 1rem;
}

#musicForm button {
  float: right;
}

#musicForm div:last-of-type {
  border-bottom: solid .1px #d3d3d3;
  margin-bottom: 2rem;
}

dialog {
  width: 90%;
  padding: 2rem;
  position: fixed;
  left: 7%;
  top: 40%;
  bottom: 15%;
  background-color: #fff;
  overflow-y: scroll;
  z-index: 1;
}

@media (min-height: 400px) {
  dialog {
    bottom: unset;
    overflow: unset;
  }
}

@media (min-width: 650px) {
  dialog {
    width: 60%;
    left: 20%;
    top: 40%;
  }
}

@media (min-width: 1150px) {
  dialog {
    width: 30%;
    left: 35%;
  }
}

dialog h4 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

dialog p {
  margin: 1rem 0 1rem 0;
  padding: 1rem 0 1rem 0;
}

dialog button {
  background-color: #a9a9a925;
  border-radius: .5rem;
  margin-left: 2rem;
  padding: .6rem;
  color: #a9a9a9;
  float: right;
}

#yesButton, #closeButton {
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

#yesButton::before, #closeButton::before {
  content: "";
  content: ""/"";
}

#yesButton:hover, #closeButton:hover {
  cursor: pointer;
  color: #008000;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

#yesButton:active, #closeButton:active {
  color: #fff;
}

#noButton {
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

#noButton::before {
  content: "";
  content: ""/"";
}

#noButton:hover {
  cursor: pointer;
  color: #ff0000;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

#noButton:active {
  color: #fff;
}
/*# sourceMappingURL=main.css.map */