html {
  padding: 0;
  margin: 0;
  background: url("../Images/pexels-photo-326311.jpeg") no-repeat center center fixed;
  background-size: cover;
}
body {
  padding: 0;
  margin: 0;
  font-family: 'Architects Daughter', cursive;
}
.container {
  padding-top: 50px;
}
.box {
  position: relative;
  background: url("../Images/paper.jpg");
  width: 50%;
  margin: auto;
  padding: 5px 20px 5px 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}
.box:last-child {
  margin-bottom: 0;
}
.name {
  position: absolute;
  right: -11px;
  top: -30px;
  background: #719127;
  padding: 10px 20px;
  font-size: 190%;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  color: #fff;
}
.dates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid black;
  border-left: 1px solid black;
}
.dates .date {
  position: relative;
  height: 75px;
  border-bottom: 1px solid black;
  border-right: 1px solid black;
}
.dates .date .day {
  position: absolute;
  top: 0px;
  left: 3px;
}
.dates .date .success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dates .date .success img {
  display: block;
}
.dates .date .redeemed {
  position: absolute;
  display: block;
  padding: 2px;
  bottom: 0;
  right: 0;
}
.tasks .head {
  text-decoration: underline;
  font-weight: bold;
  margin: 3px 0;
}
.footer {
  display: table;
  width: 100%;
  margin-top: 10px;
}
.footer .nav,
.footer .total {
  display: table-cell;
  border-top: 1px solid #000;
  padding-top: 3px;
}
.footer .nav .score,
.footer .total .score {
  display: inline-block;
  padding: 2px 8px;
  background: #719127;
  color: white;
  font-size: 120%;
  border-radius: 50%;
}
.footer .nav {
  text-align: left;
}
.footer .nav a {
  text-decoration: none;
  color: #719127;
}
.footer .nav a:hover {
  text-decoration: underline;
}
.footer .total {
  text-align: right;
}
input {
  padding: 4px 8px;
}
