.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    justify-items: center;
    width: 1200px;
  }
  
  .box {
    padding: 20px; 
    border: 1px solid #019f48; 
    background-color: #00367c;
    color: #019f48;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
  }
.box-highlight{
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2%;
    color: white;
}
.textboxes{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.two-col{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  width: 82%;
  align-items: center;
}
.col{
  flex: 1;
  margin: 10px;
  padding: 20px;

}

@media(max-width: 768px){
  .two-col{
    flex-direction: column-reverse;
    align-items: center;

  }
  .col{
    flex: 1;
    width: 100%;
  }

.grid-container{
grid-template-columns: 1fr 1fr;
}

}

@media(max-width: 300px){
.grid-container{
grid-template-columns: 1fr;
}
}