p, ul, ol, blockquote {
    text-align: justify;
    font-size: 18px;
    line-height: 28px;
    color: #21313c;
    font-weight: 400;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}


/* hero section */
.herosection {
  background-image: url('../hero/5.jpg');
  background-size: cover;
  background-position: center;
  height: 100%;
  padding: 50px;
  color: rgb(255, 255, 255);
  font-family: 'Georgia';
  width: 100%;
  text-align: center;
}

.herosection h1 {
  font-weight: 900;
  border-left: none;
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto;
    padding: 10px;
  }
  .grid-item {
    padding: 20px;
    font-size: 30px;
    text-align: center;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

.keep {
  color: green;
}

.remove {
  color: red;
}
h1 {
  border-left: 5px solid rgb(43, 113, 255);
  padding-left: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-bottom: 10px;
  line-height: 1.6;
  font-family:'Raleway', sans-serif;
  font-weight: 550;
}
body {color: #21313c;
  background-color: #fff;
  font-family: 'Montserrat' sans-serif;}

  h2, h3, h4, h5 {
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    line-height: 1.6;
  }
  
  h2 {
    color: #1a1a1a; /* darkest */
  }
  
  h3 {
    color: #2d2d2d; /* slightly lighter */
  }
  
  h4 {
    color: #404040; /* even lighter */
  }
  
  h5 {
    color: #545454; /* even lighter */
  }
  
  h6 {
    color: #696969; /* lightest */
  }

.intro-section {
  padding: 20px;
  margin-bottom: 50px; /* Space after the section */
  /* center items */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
.intro {
  padding: 20px;
  width: 85%;
  line-height: 1.6;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .intro {
    width: 100%;
  }
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  border-radius: 15px;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#myBtn {
  font-size: 20px;
  padding: 10px 20px;
  background-color: rgb(43, 113, 255);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#myBtn:hover {
  background-color: rgb(4, 80, 231);
}
/* for decorative text */
.deco-text {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  font-family: 'Lucida Calligraphy' !important;
  padding: 50px 0 !important;
  left:50px;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(89, 125, 255, 0.227);
  padding: 10px;
  background-color: white;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 5px;
}

.card h2 {
  color: #1a1a1a;
}

.card p {
  color: #404040;
}

/* Blog cards */
.card-container1 {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  width: 85%;
  gap: 30px; 
  overflow: auto;
}

@media (max-width: 600px) {
  .card-container1 {
    flex-direction: column;
  }
}

/* Blog cards */