@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, .littleTaskText, .myNavbar, .myCard, #footerID {
  background-color: rgb(247, 246, 185);
  background-image: linear-gradient(45deg, rgb(247, 246, 185), rgb(252, 206, 155));
}

.myNavbar {
  border-bottom: 1px solid darkgrey;
  z-index: 1;
}
.myNavbar #listTaskSymbol {
  font-size: 1.5rem;
}

.littleTaskText {
  border: 1px solid darkgrey;
}

#headlineContainer {
  position: relative;
}

#headline {
  height: 200px;
  background-image: url("../images/headline-bg-img.jpg");
  background-size: cover;
  background-position: center center;
  border-bottom: 1px solid darkgrey;
}

#headlineOverlay {
  position: absolute;
  background-color: rgba(102, 95, 87, 0.5);
  box-shadow: 0px 0px 8px rgba(102, 95, 87, 0.5);
  top: 60px;
  width: 30%;
  margin-left: 35%;
  margin-right: 35%;
  margin-bottom: 0;
  text-align: center;
  color: white;
  border: 0px solid black;
}

@media screen and (width < 768px) {
  #headlineOverlay {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }
}
.mySortingBtn i {
  font-size: 1.2rem;
}

.myCard {
  width: 18rem;
  box-shadow: 0px 0px 8px rgba(102, 95, 87, 0.5);
  opacity: 1;
  text-decoration: none;
}
.myCard hr {
  border-top: 1px solid darkgrey;
  margin: 0.5rem 0rem;
}
.myCard .myBookmarkBtn, .myCard .myThreeDots {
  cursor: pointer;
}

.myPriorityBtn {
  color: white;
  padding: 4px 10px;
}

#footerID {
  border-top: 1px solid darkgrey;
}
#footerID i {
  font-size: 1.2rem;
}
#footerID form > * {
  display: inline;
  vertical-align: middle;
}
#footerID #signUp {
  width: 30%;
}

@media screen and (width < 768px) {
  #footerID form > * {
    display: block;
  }
  #footerID #signUp {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */