.flexDiv {
  display: flex;
  flex-direction: inherit;
  height: 100%;
  width: 100%;
  gap: 20px;
  overflow: auto;
}
.flexElement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 25px;
  min-height: 9vh;
  min-width: 200px;
  padding: 10px;
  border-radius: 10px;
  background-color: #1A3636;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  cursor: pointer;
}
.flexElement img {
  margin-right: 0px;
  height: 10vh;
}
.flexElement h3 {
  font-size: 20px;
}



.flexCenter {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flexCenterB {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}
.flexCenterC {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flexCenterGap {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.flexAlignB {
  display: flex;
  align-items: center;
}
.flexAlign {
  display: flex;
  align-items: center;
  gap: 20px;
}
.flexColumn {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.flexColumn > div {
  width: 100%;
}
.flexColumnB {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.flexColumnC {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flexSpace {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.flexAlignCenterGap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
