body {
    font-family: "Bahnschrift";
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
.button {
    border: none;
    background: #54319f;
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.2s;
}
.button:hover {
    background: #8671db;
}