html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
}

h1 {
  text-align: center;
}

.pack {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .pack {
    width: 95%;
  }
}

.deck {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}

.card {
  /* background-color: #05a; */
  border: none;
  margin: 5px;
  width: 250px;
  height: 200px;
  padding: 20px;
  box-shadow: 0px 0px 5px #9a9a9a;
  display: inline-block;
  -webkit-transition-duration: 0.3s; /* Safari */
  transition-duration: 0.3s;
  display: inline-flex;
  /*flex-wrap: wrap; */
}

.card:hover {
  box-shadow: 0px 0px 10px #333;
}

.card-title {
  font-weight: 700;
  font-size: 2em;
  font-family: sans-serif;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  word-wrap: break-word;
  /*    text-shadow: 0px 1px 0px #ddd, 0px 2px 0px #ddd, 0px 3px 0px #aaa, 0 10px 10px rgba(0,0,0,.15);*/
}

.link {
  text-decoration: none;
}

.brand {
  position: relative;
  /*    left: 10%;*/
  justify-content: center;
  top: 10%;
  padding: 10px;
  padding-left: 10%;
  margin: 10px;
}
@media screen and (max-width: 600px) {
  .brand {
    position: static;
    padding: 0;
  }
}

.logo {
  display: inline;
}
@media screen and (max-width: 600px) {
  .logo {
    width: 33px;
  }
}

.headline {
  font-family: sans-serif;
  color: #444;
  font-weight: 400;
  font-size: 63px;
  margin-left: 10px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .headline {
    font-size: 33px;
  }
}

a {
  text-decoration: none;
}

.head-text {
  font-size: 20px;
  font-family: sans-serif;
  color: #6d6d6d;
  text-shadow: 0px 0px 0.1px;
}

/*# sourceMappingURL=home.css.map */