:root {
  --background-color: #444;
  --base-font-size: 16px; /* Tamaño de fuente por defecto */
  --responsive-font-size: calc(1rem + 2vw); /* Fórmula para calcular tamaño de fuente responsivo */
  --background-color: lab(97.54% 0.66 6.7);
  --header-color: hsl(276, 91.8%, 28.6%);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, monospace, 'Segoe UI',
    Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Main */
.container {
  width: calc(100vw - var(--scrollbar-width));
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
}

/* Header */
.header {
  min-height: 10vh;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: var(--responsive-font-size);
  color:white;
  background-color: var(--header-color);
}

.header .left, .header .right {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 10vh;
  min-width: 50px;
}

.left img, .right img {
  aspect-ratio: 1 / 1;
  height: 80%;
  border-radius: 8%;
}

.header .center{
  display: flex;
  flex: 2 1 auto;
  align-items: center;
  width: 10vw;
  min-width: 200px;
  gap: 1%;
  justify-content: center;
  flex-wrap: wrap;
} 

.center * {
  max-width: 80%;
}

.center input {
  min-width: 30%;
}

/* Footer */
footer{
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: lightslategrey;
  height: 10vh;
  min-height: 50px;
}