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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Courier New", Courier, monospace;
  background: radial-gradient(circle, rgb(43, 44, 46) 13%, rgb(25, 25, 25) 65%);
}

.cards {
  display: flex;
  width: 1000px;
}

.card {
  position: relative;
  margin: 10px;
  height: 800px;
  width: 50%;
  text-align: center;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.one {
  background-image: url(../img/people-875597_1920.jpg);
}

.two {
  background-image: url(../img/girl-2696947_1920.jpg);
}

button {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  background: none;
  border: none;
  color: aliceblue;
  font-size: 36px;
  text-shadow: 2px, 2px, 5px rgb(0, 0, 0);
  cursor: crosshair;
  z-index: 5;
}

button:hover ~ .text {
  clip-path: circle(150% at 92% 4.7%);
}

.text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 80px 30px;
  background-color: rgba(0, 0, 0, 0.7);
  color: aliceblue;
  clip-path: circle(0% at 92% 4.7%);
  transition: clip-path 0.8s;
}

h1 {
  color: rgb(10, 234, 160);
}

h2 {
  margin-bottom: 30px;
  color: rgb(8, 141, 96);
}/*# sourceMappingURL=style.css.map */