* {
    box-sizing: border-box;
}

.all-columns {
    float: left;
    width: 20%;
    padding: 13px;
    min-height: 350px;
    border: 1px solid;
    text-align: left;
}
h2 {
    display: block;
    font-size: 1.2em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    color: #FF8000;
    text-align: left;
}

a {
    color: #0000FF; /* This is the color of the links on your website */
    text-decoration: none; /* This removes the underline from the links on your website */font-size: large;

}
a:visited {
  color: red;
}

.all-rows::after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 728px) {
    .all-columns {
        width: 100%;
}
.search-form {
    display: flex;
    justify-content: center;
  }
  
  .search-form input[type="text"] {
    width: 80%;
    height: 30px;
  }
  
  @media (max-width: 600px) {
    .search-form input[type="text"] {
      width: 95%;
    }
  }
  
}