body, html {
  height: 100%;
}
body {

  color: #ffffff;
  display: flex;
  height: 100%;
  justify-content: center;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* Applique la police Comic Sans MS */
}

.card {
  align-items: center;
  background-image: linear-gradient(to top right, #4B883D, #CBFC32);
  border-radius: 0.4em;
  box-shadow: 0 0 66px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  padding: 1em;
  position: relative;
  width: 250px;
  height: 300px;
  z-index: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* Applique la police Comic Sans MS */
}
.card:after {
  mix-blend-mode: overlay;
  border: 1px solid #eee;
  border-radius: 0.4em;
  content: "";
  height: calc(100% - 2em);
  left: 0;
  margin: 1em;
  position: absolute;
  top: 0;
  width: calc(100% - 2em);
  z-index: 1;
}

h1 {
  letter-spacing: 0.05em;
  margin: 0.25em 0;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* Applique la police Comic Sans MS */
}

p {
  margin: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* Applique la police Comic Sans MS */
}

.up {
  color: #42ffa8;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* Applique la police Comic Sans MS */
}

.down {
  color: #ff0740;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* Applique la police Comic Sans MS */
}
.down:after {
  transform: rotate(180deg);
}
.down + svg {
  transform: rotate(0deg);
}

.up,
.down {
  align-items: center;
  display: flex;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* Applique la police Comic Sans MS */
}
.up:after,
.down:after {
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent currentColor transparent;
  content: "";
  height: 0;
  margin-left: 0.5em;
  margin-top: 0.1em;
  width: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* Applique la police Comic Sans MS */
}

svg {
  bottom: -50%;
  fill: #999;
  left: -20%;
  mix-blend-mode: overlay;
  position: absolute;
  transform: scaleX(-1);
  width: 150%;
  z-index: -1;
}
a {
  color:#ffffff;

  align-items: center;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* Applique la police Comic Sans MS */
}
a:hover {
  color:#000000;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* Applique la police Comic Sans MS */
}