body {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='%23fff' /%3E%3Crect x='50%' width='1' height='100%' fill='rgb(203 213 225)' /%3E%3Crect y='50%' width='100%' height='1' fill='rgb(203 213 225)' /%3E%3C/svg%3E%0A");
  background-size: 30px;
  background-color: ;
  text-align: center;
  direction: ltr; 
  min-height: 901px;
  dir:"ltr" 
  spellcheck="false"
}

/* Container for flexboxes */
.row {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10%;
}

.btn {
  padding: 20px 60px;
  width: 60%;
  margin: 40px;
  border: none;
  outline: none;
  position: relative;
  border-radius: 6px;
  background: linear-gradient(to right, #FF2E90, #3D23B9);
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

.btn::before {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 5px;
  background-color: white;
  z-index: -1;
  transition: 200ms;
}

.btn::after {
  content: attr(data);
  font-size: 16px;
  background: linear-gradient(to left, #FF2E90, #3D23B9);
   -webkit-background-clip: text;
  color: transparent;
  transition: 200ms;
  border-radius: 5px;
  border-color: white;
}

.btn:hover::before {
  opacity: 30%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.btn:hover::after{
  color: white;

}

.btn2 {
  padding: 20px 60px;
  width: 60%;
  margin: 40px;
  border: none;
  outline: none;
  position: relative;
  border-radius: 6px;
  background: linear-gradient(to right, #FF2E90, #3D23B9);
  color: white;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

.btn2::before {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 5px;
  background: linear-gradient(to right, #FF2E90, #3D23B9);
  z-index: -1;
  transition: 200ms;
}

.btn2::after {
  content: attr(data);
  font-size: 16px;
  color: white;
  transition: 200ms;
}

.btn2:hover::before {
  color: white;
}
.btn2:hover::after{
  opacity: 35%;
  background: linear-gradient(to left, #FF2E90, #3D23B9);
   -webkit-background-clip: text;
   top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}


.push {
  margin: 50px;
}

.footer {
  text-align: center;
  background-color: #f706cf;
  color: white;
  font-size: small;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}