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

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    background: #dbeafe;
    color: #172554;
}

section {
    width: min(760px, calc(100% - 50px));
    padding: 52px;
    border-radius: 30px;
    background: #eff6ff;
    box-shadow: 0 24px 70px rgba(23, 37, 84, 0.16);
}

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

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

a {
    display: inline-block;
    margin-top: 22px;
    padding: 14px 23px;
    border-radius: 14px;
    background: #172554;
    color: #eff6ff;
    text-decoration: none;
    font-weight: 700;
}
