@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(to top, #cc208e 0%, #6713d2 100%);
}

button {
    font-size: 50px;
    padding: 25px 46px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 10px;
    font-weight: 500;
    color: #5372F0;
    cursor: pointer;
}