* {
  margin: 0px;
  padding: 0px;
}

body {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  width: auto;
  height: 100vh;
  background-color: white;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  font-weight: 500;
  font-size: 35px;
  color: rgb(0, 110, 255);
}

.edge {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 20vw;
  height: 10vh;
  border: 3px solid rgb(0, 110, 255);
}

.edge span {
  position: absolute;
  transition-duration: 1.5s;
}

.edge span:nth-child(1) {
  color: rgb(0, 110, 255);
  z-index: 1;
}

.edge span:nth-child(2) {
  width: 45vh;
  height: 25vw;
  margin-bottom: 70vh;
  border-radius: 20%;
  background-color: rgb(0, 110, 255);
}

.edge:hover span:nth-child(1) {
  color: white;
}

.edge:hover span:nth-child(2) {
  transform: translateY(175px);
}
