.page {
  min-height: 100vh; /* Ensure each section takes at least the full viewport height */
  display: flex;
  align-items: center !important;
  justify-content: center;
  margin-bottom: 50px; /* Adjust this value for the desired space between sections */
  background-color: #f0f0f0; /* Optional: Background color for better visibility */
}
@media screen and (min-width: 767px) {
  .page {
    min-height: 100vh; /* Ensure each section takes at least the full viewport height */
    display: flex;
    align-items: center !important;
    justify-content: center;
    margin-bottom: 50px; /* Adjust this value for the desired space between sections */
    background-color: #f0f0f0;
    margin-left: 13%; /* Adjust the margin as needed */
    width: calc(100% - 13%); /* Subtract twice the margin value from 100% */
    overflow-x: hidden; /* Hide horizontal scrollbar */
  }
}
body {
  margin: 0;
  padding: 0;
  background-color: #f0f0f0; /* Color de fondo opcional */
}
.middleAligned {
  padding-top: 10%;
}
