* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

ul {
  list-style: inside;
  padding: 20px;
  margin: 10px;
}

h1 {
  font-size: 40px;
  padding: 5px;
  color: black;
}

p {
  font-size: 20px;
  text-align: inherit;
  padding: 20px;
  color: black;
}

/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background: linear-gradient(57deg, #8ac926, #77c950);
  padding: 20px 10px;
}

/* Style the header links */
.header a {
  float: left;
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 35px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #6dba49;
  color: white;
}

/* Style the active/current link*/
/* change this one  */
.header a.active {
  color: white;
  font-size: 21px;
  font-weight: bold;
  text-decoration: underline;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

.footer {
  font-size: 19px;
  left: 0;
  bottom: 30px;
  width: 100%;
  color: black;
  text-align: center;
}

/*  */
html {
  background: #FAF3EB
}

.band {
  width: 60%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 50px;
}

.card {
  background: #C9D2C8;
  text-decoration: none;
  color: black;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;

  position: relative;
  top: 0;
  transition: all .1s ease-in;

  &:hover {
    top: -2px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  }

  article {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  p {
    flex: 1;
    line-height: 1.4;
  }
}

.item-1 {
  @media (min-width: 60em) {
    grid-column: 1 / span 2;
  }
}

.item-2 {
  @media (min-width: 60em) {
    grid-column: 1 / span 2;
  }
}

.item-3 {
  @media (min-width: 60em) {
    grid-column: 1 / span 2;
  }
}

/*  */
/* the button  */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.buttons {
  margin: 0%;
  text-align: center;
}

.btn-hover {
  width: 200px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin: 10px;
  height: 30px;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 50px;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.btn-hover:hover {
  background-position: 100% 0;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.btn-hover:focus {
  outline: none;
}

.btn-hover.color-5 {
  background-image: linear-gradient(to right, #0ba360, #3cba92, #30dd8a, #2bb673);
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}

/* the button  */
