@import url("https://fonts.googleapis.com/css2?family=Mulish&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Mulish", sans-serif;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  display: flex;
  width: 90vw;
  align-items: center;
  justify-content: center;
}

.image {
  height: 80vh;
  flex: 0.15;
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  margin: 10px;
  border-radius: 49px;
  cursor: pointer;
  transition: flex 0.7s ease-in;
}

.image.active {
  flex: 1;
}

.active h3 {
  opacity: 100%;
  transition: opacity 0.3s ease-in 0.4s;
}

h3 {
  color: #ffffff;
  font-size: 24px;
  opacity: 0%;
  padding: 30px;
  position: absolute;
  bottom: 70px;
}
