.button {
    color: black;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.button-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 10px;
    max-width: 1000px;
    margin: auto;
}

a {
  display: inline-block;
  margin-top: 10px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  margin: 30px auto;
  max-width: 90%;
  height: auto;
}

@media (max-width: 500px) {
  .button {
    padding: 15px;
    font-size: 14px;
  }

  .button h1 {
    font-size: 18px;
  }

  .button p {
    font-size: 14px;
  }
}

.image_blog {
  text-align: center;
  border-radius: 10px;
  background-color: white;
  padding: 20px;
  margin: 20px auto;
  max-width: 1000px;
  box-sizing: border-box;
}

.image_blog img {
  margin: 20px auto;
  max-width: 100%;
  border-radius: 10px;
}
