body {
  font-family: var(--primaryFont);
  margin: 0;
  background-color: var(--backgroundColor);
}

h1,
h2 {
  margin: 0;
  font-size: unset;
}

.card-container {
  margin-right: 20px;
  margin-left: 20px;
}

.content_marge {
  padding-left: 18vw;
  padding-right: 18vw;
  padding-top: 15px;
  padding-bottom: 15px;
}

@media screen and (max-width: 1440px) {
  .meteo_card,
  .road_card {
    width: 85% !important;
  }
}

.gerardmer-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  box-shadow: 0 4px 10px -4px rgb(36 40 47 / 25%);
  border-radius: 0 0 30px 30px;
  border: var(--primaryColor) solid 3px;
  margin-bottom: 20px;
  padding-top: 10px;
}

.totaux-poi {
  display: flex;
  width: 100%;
  padding-bottom: 10px;
}

.totaux-poi-children {
  width: 100%;
}

.card-content {
  background-color: white;
  border-radius: 0 0 30px 30px;
  border: var(--primaryColor) solid 3px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.subcard-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.meteo_card {
  width: 48%;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
}

.poi_card {
  width: 98%;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
}

.road_card {
  width: 48%;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
}

.bloc_title {
  display: flex;
  flex-direction: row;
  background-color: var(--primaryColor);
  border-radius: 30px 30px 0 0;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: bold;
  align-items: center;
  padding-top: 2px;
}

.bloc_title_simple {
  display: flex;
  flex-direction: row;
  background-color: var(--primaryColor);
  border-radius: 30px 30px 0 0;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: bold;
  min-height: 40px;
  align-items: center;
}
.content {
  padding: 1rem 6rem;
}

.content:nth-child(2n) {
  background-color: var(--contentColor);
}

.bloc_meteo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.condition_row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.bloc_pistes_remontees {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 1040px) {
  .meteo_card {
    width: 100%;
  }
  .road_card {
    width: 100%;
  }
}
@media screen and (max-width: 850px) {
  .content {
    padding: 0.5rem 3rem;
  }
}
@media screen and (max-width: 450px) {
  .content {
    padding: 0.5rem 1.5rem;
  }

  .content:nth-child(2n) {
    background-color: var(--contentColor);
  }

  .bloc_meteo {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .condition_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 25px;
    gap: 25px;
  }

  .bloc_pistes_remontees {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
