/* Add or modify styles as needed */

.vh {
  height: 100vh;
  background-color: rgba(255,0,0,0);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10vw;
  font-weight: bold;
}

.vh:before {
  content: '';
}

.philosophie {
  position: relative;
}

.point {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 4rem;
  position: relative;
  margin: 0;
  padding: 0;
}

.point-content {
  height: 100%;
  padding-top: 200px;
  margin-right: 10%;
  margin-left: 10%;
  background-color: rgba(255, 255, 255, 0);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: 'Abhaya Libre', serif;
  color: white;
}

.point-background {
  flex-basis: 50%;
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.point-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

