@charset "utf-8";

/* CSS Document for BOX*/

.big-box {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 6px 15px;
  background-color: white;
  color: #454545; 
  margin-top: 20px;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.box {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 6px 15px;
  background-color: white;
  color: #454545; 
  width: 49%;
  box-sizing: border-box;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 15px;
}

@media screen and (max-width: 600px) {
  .box {
    width: 100%;
  }
  .container {
    gap: 10px;
  }
}