* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: white;
    height: 700px;
    display: grid;
    place-items: center;
}

button {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    padding: 20px 45px;
    background-color: transparent;
    border: 3px solid black;
    border-radius: 50px;
    color: #000;
    letter-spacing: 1.5px;
    font-weight: 700;
    outline: none;
}