a {
  text-decoration: none;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  min-height: 85vh;
  padding: 30px 50px;
}
.container .card {
  width: 400px;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  background-color: #5a6e82;
  color: #DAF3FF;
  margin: 20px;
}
.container .card .title {
  width: 100%;
  height: auto;
  background-color: #3c4b5f;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 20px;
}
.container .card .title a {
  color: #DAF3FF;
  font-size: 25px;
}
.container .card .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.container .card .content .contentList .contentItem {
  list-style-type: none;
  font-size: 18px;
  margin-bottom: 10px;
  text-align: justify;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}
.container .card .content .readMore {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  background-color: transparent;
  border: 2px solid white;
  color: white;
  font-weight: bolder;
  cursor: pointer;
  padding: 10px 22px;
  margin: 0 auto;
  text-decoration: none;
}
.container .card .content .readMore:hover {
  background-color: white;
  color: #5a6e82;
}

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