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

body {
    background: #ffffff;
    font-family: Arial, sans-serif;
}

main {
    min-height: 100vh;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__logo {
    width: min(620px, 90vw);
    height: auto;
    display: block;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 110px;
    min-width: 190px;
    padding: 16px 40px;
    border-radius: 999px;
    background: #0e5fda;
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(14, 95, 218, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(14, 95, 218, 0.3);
    color: #ffffff;
}

@media (max-width: 640px) {
    .hero__button {
        margin-top: 72px;
        min-width: 160px;
        padding: 14px 32px;
        font-size: 20px;
    }
}
