* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 0;
}

.download a {
  font-size: 20px;
  color: blue;
}

.download {
  width: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 5%;
  margin-bottom: 7.5%;
}

body {
  background-color: FloralWhite;
}

.wrapper {
  display: flex;
  flex-flow: row wrap;
  min-height: 100vh;
  padding: 0 100px;
  gap: 50px;
  align-items: center;
}
.wrapper div {
  overflow: hidden;
  position: relative;
  width: 100px;
  border-radius: 150px 0;
  box-shadow: -30px -30px 30px rgba(0, 0, 0, 0.5);
  flex: 1 1 400px;
}
.wrapper div img {
  width: 100%;
  border-radius: 150px 0;
}
.wrapper :nth-child(2) {
  flex: 6 1 500px;
}
.wrapper :nth-child(1):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 150px 0;
  background-image: url(../add/pictures/1.jpg);
  background-size: cover;
  filter: grayscale(100%);
  transition: width 1s ease;
}
.wrapper :nth-child(1):hover:before {
  width: 0;
}
.wrapper :nth-child(2):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 150px 0;
  background-image: url(../add/pictures/2.jpg);
  background-size: cover;
  filter: grayscale(100%);
  transition: width 1s ease;
}
.wrapper :nth-child(2):hover:before {
  width: 0;
}
.wrapper :nth-child(3):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 150px 0;
  background-image: url(../add/pictures/3.jpg);
  background-size: cover;
  filter: grayscale(100%);
  transition: width 1s ease;
}
.wrapper :nth-child(3):hover:before {
  width: 0;
}

/*# sourceMappingURL=style.css.map */
