.blue-box {
  display: block;
  margin: 15px 0;
  padding: 15px;
	width: 400px;
  border: 2px solid #081529;
  border-radius: 8px;
  background-color: #eef4fb;
	color: #081529;
	align-content: center;
}

.white-box {
  display: block;
  margin: 15px 0;
  padding: 15px;
	width: 400px;
  border: 2px solid #081529;
  border-radius: 8px;
  background-color: #eef4fb;
	color: #081529;
	align-content: center;
}

.container {
  display: flex;
  gap: 15px; /* Adds space between the boxes */
	justify-content: center; /* Centers the boxes horizontally */
  align-items: stretch; 
}

.blue-box, .white-box {
  display: block;
  padding: 15px;
  width: 400px;
  border: 2px solid #081529;
  border-radius: 8px;
  background-color: #eef4fb;
  color: #081529;
}