body {
    background-color: #ffffff;
    font-size: 16px;
    text-align: center;
}

img {
    width: 90%;
    height: auto;
    margin-bottom:2rem;
}

/* Base styles for the container */
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 20px;
  }
  /* Styles for the columns */
  .column {
    width: calc(25% - 20px); /* Adjust width as needed */
    margin-bottom: 30px; 30px; 30px; 30px; /* Adjust margin as needed */
    background-color: #09202d;
    padding: 20px;
    box-sizing: border-box;
    font-family: Quicksand;
    color: #ffff;
    font-size: 14px;
  }
  /* Adjust column width for smaller screens */
  @media only screen and (max-width: 768px) {
    .column {
      width: calc(50% - 20px);
    }
  }
  /* Adjust column width for even smaller screens */
  @media only screen and (max-width: 480px) {
    .column {
      width: calc(100% - 20px);
    }
  }

/* Styling buttons*/
.button {
    font-family: quicksand;
    background-color:#93d400;
    color: #ffff;
    border:none; 
    border-radius:0px; 
    padding:15px;
    min-height:30px;
    min-width: 300px;
    transition-duration: 0.4s;
    text-decoration: none;
    font-size: 15px;
  }

.button:hover {
  background-color: #a9dd33;
  color: #081f2d;
  text-decoration: underline;
  
}

/* Container for the two columns */
  .title {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden; /* Clear float */
    margin: 30px;
  }
