/* styles.css */

@font-face {
    font-family: 'grotesque';
    src: url('./BricolageGrotesque-Medium.ttf') format('truetype');
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-family: grotesque, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout principal */
.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.left-section,
.right-section {
  width: 100%;
  height: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
}

.left-section {
  background-color: white;
}

.right-section {
  background-color: #283372;
  flex-direction: column;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Cartes */
.card {
  width: 210px;
  height: 210px;
  background-color: white;
  border-radius: 25px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
}


.card-img {
  width: 200px;
}

/* Image principale */
.logo {
  width: 380px;
}

/* Responsive - sm */
@media (min-width: 640px) {
  .right-section {
    flex-direction: row;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Responsive - xl */
@media (min-width: 1280px) {
  .container {
    flex-direction: row;
    height: 100vh;
  }

  .left-section,
  .right-section {
    width: 50%;
    height: 100%;
  }
}
