*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background-color: hsl(27 17.6% 73.3%);
  margin: 0;
  font-family: sans-serif;
  line-height: 1.5;
  font-size: 14pt;
}

.card {
  background-color: white;
  border-radius: 1rem;
  padding: 1rem;
  width: 22rem;
  font-family: Ruda;
  margin: 2rem auto;
  box-shadow: 0.5rem 0.5rem 0.25rem 0 rgba(0,0,0,0.25);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.delivery-grid .cell {
  border-color: hsl(27 17.6% 93%);
  border-style: solid;
  border-width: 0;
  padding: 0.5rem;
}

.delivery-grid .col-2 {
  grid-column: span 2;
}

.delivery-grid .day1,
.delivery-grid .day3 {
  border-right-width: 2px;
}

.delivery-grid .areas {
  border-bottom-width: 2px;
}

.delivery-grid .applink {
  border-top-width: 2px;
}

.delivery-grid header {
  color: hsl(27 17.6% 53%);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.delivery-grid ul {
  list-style: none;
  margin: 0.1rem 0;
  padding: 0;
}

.delivery-grid ul li {
  color: #604020;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.delivery-grid .applink,
.delivery-grid .sharecode {
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.delivery-grid .applink a {
  text-decoration: none;
  font-family: Boogaloo;
  text-transform: lowercase;
  font-size: 1.3rem;
  display: inline-block;
  padding: 0.5rem 2rem;

  color: #604020;
  background-color: #c6d670;
  border-style: solid;
  border-color: #604020;
  border-width: 2px;
  border-radius: 0.5rem;
}

.delivery-grid .applink a:hover {
  background-color: #e3e3b3;
}

.delivery-grid .sharecode img {
  height: 1.3rem;
  margin-right: 0.3rem;
}

.delivery-grid .sharecode code {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.3rem;
  display: inline-block;

  color: #604020;
}
