@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,700&display=swap');

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    background: #17324d;
    color: #f4efe7;
}

section {
    width: min(760px, calc(100% - 56px));
    padding: 56px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

h1 {
    margin: 0 0 20px;
    font-size: clamp(3rem, 8vw, 6rem);
}

p {
    max-width: 620px;
    font-size: 1.25rem;
    line-height: 1.7;
}

a {
    display: inline-block;
    margin-top: 22px;
    color: #17324d;
    background: #f4efe7;
    padding: 15px 24px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
}
