@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');

body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #dcecff, #f8fbff);
    color: #10243d;
}

article {
    width: min(780px, calc(100% - 52px));
    padding: 52px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(16, 36, 61, 0.14);
}

h1 {
    margin: 0 0 18px;
    font-size: clamp(2.7rem, 7vw, 5.4rem);
}

p {
    font-size: 1.18rem;
    line-height: 1.65;
}

a {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 22px;
    background: #10243d;
    color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}
