@import './vars.css';

body {
  background-color: var(--color-chantal);
  font-family: 'Arial', sans-serif;
}

header {
  background-color: var(--color-chantal);
  color: white;
  padding: 20px;
  font-weight: 700;
  font-size: x-large;
  border-bottom: 1px solid white;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

.card {
  color: black;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}