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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    background: linear-gradient(135deg, #eef4ff, #dceefc);

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px;
}

.overlay {
    width: 100%;
    display: flex;
    justify-content: center;
}

.card {

    max-width: 760px;
    width: 100%;

    background: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(0,0,0,.15);

    text-align: center;
}

.hero {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

h1 {
    margin: 35px 30px 20px;
    font-size: 2.4rem;
    color: #1d3557;
}

p {
    margin: 0 40px 18px;
    color: #555;
    line-height: 1.7;
    font-size: 1.15rem;
}

.small {
    margin-top: 35px;
    margin-bottom: 40px;
    color: #888;
    font-size: .95rem;
}