body {
  margin: 0;
  padding: 0;
  background-color: black;
  display: flex;
  min-height: 100vh;
  justify-content: center;   
  align-items: center;
}

button {
    background: transparent;
    color: white;
    padding: 20px;
    width: 250px;
    border: solid #6f42c1 1px;
    border-radius: 10px;
    transition: all 0.5s ease;
    font-size: medium;
    font-family: "Manrope";
}

button:hover {
    background-color: #6f42c1;
    box-shadow: 0 0 40px #6f42c1;
    border-radius: 10px;

}


