* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(145, 145, 235);
  height: 100vh;
  width: 100vw;
}

.center {
  text-align: center;
}

.feature-card-container {
  max-width: 70%;
  margin: 20px auto;
  padding: 10px;
  /* border: 1px solid white; */
  text-align: center;
}

.feature-card {
  display: inline-block;
  padding: 30px;
  border: 2px solid grey;
  width: 40%;
  min-height: 170px;
  border-radius: 10px;
  margin: 15px 4px;
  background-color: rgb(227, 187, 187);
  position: relative;
}

.feature-card:hover {
  box-shadow: 0 0 10px blue;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  font-size: 0.9rem;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  appearance: none;
  border: 2px solid #f1be32;
  background-color: white;
  border-radius: 5px;
  margin: 5px;
  position: absolute;
  right: 0;
  top: 0;
  /* transition: all 0.3s ease-in; */
}

input:checked {
  background-color: red;
  border: 2px solid rgb(161, 14, 14)
}

input[type="checkbox"]:checked::after{
  content: "✓";
  color: blue;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  display: block;
}