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

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

html {
    height: 100%;
}

body {
    min-height: 100%;
    display: block;
    font-family: 'Lato', sans-serif;
    background-color: #fff;
}

h1 {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    text-align: center;
    line-height: 1.2;
}

p {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    text-align: center;
    line-height: 1;
}

main {
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 16px;
}

.s {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    border-radius: 9999px;
    background: radial-gradient(51.42% 45.36% at 50% 47.17%, #f6f8fd 47.83%, #daf4f3 77.04%, #7fadef 100%), #fff;
    filter: blur(60px);
    transform: scale(1.5);
    z-index: 0;
    pointer-events: none;
}

.s::after {
    content: "";
    display: none;
    width: 240px;
    height: 240px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 9999px;
    background: radial-gradient(57.66% 50.86% at 50% 47.17%, #f6f8fd 47.83%, #daf4f3 77.04%, #7fadef 100%), #fff;
    filter: blur(30px);
}

.g {
    width: 260px;
    height: auto;
    margin-top: 46px;
    padding-inline: 65px;
    position: relative;
    z-index: 1;
}

.i {
    width: auto;
    height: auto;
    margin-top: 120px;
    position: relative;
    z-index: 1;
}

.b {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.l {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 12px 24px;
    background-color: #007acd;
    gap: 4px;
}

.l a {
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.l a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .s {
        height: 80%;
        background: radial-gradient(57.64% 50.84% at 45.42% 50%, #f6f8fd 47.83%, #daf4f3 77.04%, #7fadef 100%), #fff;
        filter: blur(10px);
        transform: scale(1.45) translateX(20px);
    }

    .s::after {
        display: block;
    }

    h1 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    .g {
        width: 84px;
        height: 30px;
        margin-top: 32px;
        padding-top: 16px;
        padding-inline: 0;
    }

    .i {
        width: 160px;
        height: 160px;
        margin-top: 80px;
    }

    .b {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .l {
        width: 100%;
        padding: 12px 16px;
    }

    .l a {
        width: 100%;
        font-size: 14px;
    }
}