/* GENERAL CSS LAYOUT */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.buscard {
  display: flex; /* Create a flex container to manage the layout */
  width: 98%;
  max-width: 700px;
  aspect-ratio: 17 / 11;
  padding: 2% 3%;
  gap:2cqw;
  box-shadow: 0px 0px 18px 8px rgba(0, 0, 0, 0.28);
  margin-bottom: 20px;
  word-break:break-word;
}
.qrbox {
  display: flex;
  width: 300px;
}
.footer{
  text-align: center;
}

/* COMPANY SPECIFIC LAYOUT */
.colLeft, .colRight {
  display: flex;
  flex-direction: column; /* Align children vertically */
  height:100%;
}
.colLeft{
  justify-content: space-around; 
  flex:40;
  text-align: center;
  word-break: normal;
}
.colRight{
  justify-content: space-around; 
  flex:70;
}
.logocenter {
  display: flex;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.big {
  font-size: clamp(4px, 5cqw, 34px);
  font-weight: bold;
  font-family: 'Poppins';
}
.mid {
  font-size: clamp(4px, 3.5cqw, 20px);
  font-weight: bold;
  font-family: 'Poppins';
}
.small {
  font-size: clamp(4px, 2.5cqw, 20px);
  font-family: 'Poppins';
}
.xsmall {
  font-size: clamp(4px, 2.5cqw, 20px);
  font-family: 'Poppins';
  display: flex;
  margin-top: auto;
}
.smallWeb {
  text-align: flex;
  font-size: clamp(4px, 2cqw, 20px);
  font-family: 'Poppins';
}
a {
  color: black; /* To make fonts black and not blue */
}


