body {
  /* padding: 0;
  margin: 0; */
}

.container {
  padding: 16px 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background-color: #e2f0d9;

  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.card {
  margin-right: 8px;
  width: 355px;
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  border-radius: 15px 15px 0 0;
}

.card p {
  padding: 15px;
}

.checkmark {
  width: 30px;
  height: 30px;
  background-image: url('../images/check.png');
  background-size: cover;
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
}

.card-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* background-color: #fefefe; */
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 1% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.iframe-blocks {
  width: 95%;
  height: 900px;
}

.show {
  display: block;
}

.resizer {
  height: 60%;
  /* background-size: contain; */
}