.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: normal;
  align-content: stretch;
  gap: 4%;
  margin-top: 1vw;
}

.flex-items:nth-child(1) {
  display: block;
  width: 50%;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 0;
  justify-content: baseline;
 align-content: baseline;
 margin-top: 1rem;
 height: fit-content;
}

.flex-items img {
    width: 100%;
    box-shadow: -6px 4px 2px rgb(250, 225, 1);
}
.flex-items:nth-child(2) {
  display: block;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 0;
}


    table {
        box-shadow: -6px 4px 2px rgb(250, 225, 1);
        width: 100%;
        }
      th {
        background-color: rgb(80, 0, 0);
        color: rgb(255, 255, 255);
      }
      tr >*:nth-child(1) {
        text-align: center;
      }


      tbody > *:nth-child(2n) {
       background-color: aquamarine;
      }

      tbody > *:nth-child(2n+1) {
       background-color: rgb(239, 248, 245);
      }


      td,th {
        padding: 0.5rem 1vw;
      }
      

.tittle{
text-align: center;
font-size: 25px;
color: rgb(5, 22, 255);
background: rgb(255, 229, 79);
padding: 4px;

}

.section_heading {
    color: beige;
    font-size: calc(var(--font-tittle_sz) + 1.3vw);
    padding-top: 1vw;
}
