body,
html {
  height: 100%;
  margin: 0;
}

body {
  background: rgb(253, 253, 253);
  display: flex;
}

.container {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.imglogo {
  width: 50vw;
}
.imgparana {
  width: 12vw;
}

.button {
  cursor: pointer;
  margin-bottom: 30px;
  text-shadow: 0 -2px 0 rgb(138, 74, 133), 0 1px 1px rgb(222, 194, 217);
  box-sizing: border-box;
  font-size: 2em;
  font-family: Helvetica, Arial, Sans-Serif;
  text-decoration: none;
  font-weight: bold;
  color: rgb(243, 246, 244);
  height: 20vh;
  line-height: 65px;
  padding: 0 32.5px;
  display: inline-block;
  width: 60vw;
  background: linear-gradient(
    90deg,
    /* to bottom, */ rgba(91, 13, 136, 1) 16.5%,
    rgba(227, 0, 120, 1) 100%
  );
  border-radius: 5px;
  border-top: 1px solid rgb(242, 198, 248);
  border-bottom: 1px solid rgb(138, 76, 175);
  top: 0;
  transition: all 0.06s ease-out;
  position: relative;
  display: flex;
  align-items: center;
  justify-self: center;
}
.button:visited {
  color: rgb(227, 239, 232);
}

.button:hover {
  background: linear-gradient(
    to bottom,
    rgb(224, 186, 241) 0%,
    rgb(224, 183, 228) 26%,
    rgb(199, 150, 196) 100%
  );
}

.button:active {
  top: 6px;
  text-shadow: 0 -2px 0 #ab7fbb, 0 1px 1px rgb(222, 194, 220), 0 0 4px white;
  color: white;
}
.button:active:before {
  top: 0;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.7), 0 3px 9px rgba(0, 0, 0, 0.2);
}

.button:before {
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  top: 6px;
  border-radius: 5px;
  height: 20vh;
  background: linear-gradient(
    to top,
    rgb(65, 30, 80) 0%,
    rgb(131, 55, 121) 6px
  );
  transition: all 0.078s ease-out;
  box-shadow: 0 1px 0 2px rgba(0, 0, 0, 0.3), 0 5px 2.4px rgba(0, 0, 0, 0.5),
    0 10.8px 9px rgba(0, 0, 0, 0.2);
}

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