* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header {
  background-color: rgb(48, 45, 45);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav {
  width: 30%;
  color: rgb(189, 189, 189);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 0.7rem;
}
header nav .logo {
  font-size: 1.2rem;
  color: white;
}
header .icon {
  color: white;
  width: 2%;
}

.hero {
  background-image: url("../images/calendar.jpg");
  width: 100%;
  height: 30vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero .newTask {
  position: relative;
  display: flex;
  min-width: 400px;
  flex-direction: column;
  align-items: center;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 40vw;
  height: 15vh;
  justify-content: center;
  background-color: rgba(128, 128, 128, 0.514);
}
.hero .newTask p {
  font-family: "Whisper", cursive, "Arial Narrow", Arial, sans-serif;
  font-size: 2.5rem;
  color: white;
}
.hero .newTask button {
  height: 3rem;
  width: 45%;
  background-color: rgba(78, 5, 5, 0.767);
  color: rgb(235, 222, 222);
}

.contHead {
  background-image: linear-gradient(rgba(0, 0, 255, 0.5), rgba(0, 0, 255, 0.5)), url("../images/calendar-1255953_640.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.contHeadp {
  margin: 0 3rem;
}
.contHead .weekly {
  display: flex;
  justify-content: space-between;
  width: 93%;
  margin: 0 auto;
  color: white;
}

#sort-dead:hover, #sort-imp:hover {
  color: red;
  background-color: white;
}

.flex {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem;
}

.container .cardholder {
  padding: 0.5rem;
}
.container hr {
  width: 90%;
  margin: 0 auto;
}
.container .priority {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 0.2rem 0.4rem;
  align-items: center;
}
.container .prioText {
  font-size: 0.9rem;
}
.container .prioLevel {
  background-color: blanchedalmond;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50px;
  margin-left: 0.3rem;
}
.container .deadline {
  width: 90%;
  margin: 0 auto;
  font-size: 0.8rem;
  border-bottom: 1px solid #adb5bd;
}
.container .right {
  align-self: self-end;
}

.imgToDo {
  outline: thick double black;
  border-radius: 2%;
  margin: 0 auto;
  width: 90%;
  height: 200px;
  align-items: center;
  justify-content: center;
}
.imgToDo img {
  width: 100%;
}

footer {
  display: flex;
  flex-direction: column;
  height: 7vh;
  background-color: rgb(48, 45, 45);
  color: rgb(189, 189, 189);
}
footer .footernav {
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: center;
}
footer a {
  text-decoration: none;
  color: rgb(189, 189, 189);
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  text-align: center;
}

.newTask {
  max-width: 20vw;
}

.modal-body {
  border: 1px solid black;
  display: flex;
  flex-direction: column;
}
.modal-body div {
  margin-top: 0.3rem;
}
.modal-body div :nth-child(1) {
  width: 49%;
  text-align: center;
}
.modal-body div :nth-child(2) {
  width: 49%;
  align-items: right;
  text-align: center;
}
.modal-body span {
  margin: 0.3rem auto;
}
.modal-body input {
  width: 50%;
}/*# sourceMappingURL=style.css.map */