* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

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

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.30) 0%,
            rgba(255,255,255,.55) 45%,
            rgba(255,255,255,.92) 100%
        ),
        url("../assets/images/hero-main.png");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    color: #102044;
}

.home-page {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    margin: 0 auto;

    padding:
        46vh
        20px
        calc(32px + env(safe-area-inset-bottom));
}

.home-title {
    margin: 0 0 24px;

    text-align: center;

    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: .04em;

    color: #006bff;

    text-shadow:
        0 2px 0 #ffffff,
        0 4px 14px rgba(0,107,255,.22);
}

.home-menu {
    display: grid;
    gap: 18px;
}

.home-menu-button {
    width: 100%;
    min-height: 56px;

    display: flex;
    align-items: center;
    gap: 0px;

    padding: 16px 22px;

    background: rgba(255,255,255,.90);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 3px solid rgba(215,233,255,.95);
    border-radius: 28px;

    color: #102044;
    text-decoration: none;

    box-shadow:
        0 10px 24px rgba(0,80,180,.14);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.home-menu-button:active {
    transform: scale(.97);
    box-shadow:
        0 6px 16px rgba(0,80,180,.12);
}

.home-menu-button img {
    flex: 0 0 52px;

    width: 72px;
    height: 72px;

    object-fit: contain;
}

.home-menu-button span {
    flex: 1;

    font-size: 22px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: .03em;

    color: #006bff;
}

@media (max-height: 720px) {
    .home-page {
        padding-top: 42vh;
    }

    .home-title {
        margin-bottom: 18px;
        font-size: 30px;
    }

    .home-menu {
        gap: 14px;
    }

    .home-menu-button {
        min-height: 82px;
        border-radius: 24px;
    }

    .home-menu-button img {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

    .home-menu-button span {
        font-size: 20px;
    }
}