* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    height: 100vh;

    font-family: sans-serif;
}

div {
    background: #fff;
    width: 100%;
    max-width: 650px;
    padding: 1.5rem;
    border-radius: 1.5rem;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

h1 {
    color: #1c1c1c;
    font-size: 2rem;
    line-height: 100%;
}

p {
    color: #7a7a7a;
    line-height: 130%;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

a {
    padding: .5rem 1rem;
    background: #5953d6;
    color: #fff;
    text-decoration: none;
    border-radius: .5rem;
}