@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

*{
  font-family: Lora, serif;
  margin: auto;
}
#Tennis\ in\ Astana, #Tennis\ for\ Adults{
  color: white;
  font-size: 20px;
  margin-bottom: 20px;
}
.tournament{
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: Lora, serif;
}
.Heading{
  display: block;
  justify-content: left;
  text-align: left;
  margin: 50px 0;
}
/* FLIP CARD ANIMATION*/
.flip-card {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .2);
  border-radius: .1em;
  color: greenyellow;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.25rem;
}

.top,
.bottom,
.flip-card .top-flip,
.flip-card .bottom-flip {
  height: .75em;
  line-height: 1;
  padding: .25em;
  overflow: hidden;
}

.top,
.flip-card .top-flip {
  background-color: #f7f7f7;
  border-top-right-radius: .1em;
  border-top-left-radius: .1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.bottom,
.flip-card .bottom-flip {
  background-color: white;
  display: flex;
  align-items: flex-end;
  border-bottom-right-radius: .1em;
  border-bottom-left-radius: .1em;
}

.flip-card .top-flip {
  position: absolute;
  width: 100%;
  animation: flip-top 250ms ease-in;
  transform-origin: bottom;
}

@keyframes flip-top {
  100% {
    transform: rotateX(90deg);
  }
}

.flip-card .bottom-flip {
  position: absolute;
  bottom: 0;
  width: 100%;
  animation: flip-bottom 250ms ease-out 250ms;
  transform-origin: top;
  transform: rotateX(90deg);
}

@keyframes flip-bottom {
  100% {
    transform: rotateX(0deg);
  }
}

/*MONITORING SYSTEM*/
.charts {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.chart {
  flex: 1;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

.chart h2 {
  font-size: 18px;
}

.bar-chart, .pie-chart {
  height: 200px;
}


.containers {
  display: flex;
  gap: .5em;
  justify-content: center;
}

.containers-segment {
  display: flex;
  flex-direction: column;
  gap: .1em;
  align-items: center;
}

.segment {
  display: flex;
  gap: .1em;
}

.segment-title {
  font-size: 1rem;
}


