* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f4f6f8;
    color: #17202a;
    font-family: Arial, sans-serif;
}

.site-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.site-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
}

.button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: 0;
    border-radius: 0.4rem;
    background: #1f6feb;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    text-align: center;
    text-decoration: none;
}

.button:hover,
.button:focus-visible {
    background: #185abc;
}

@media (max-width: 600px) {
    .site-banner {
        height: 220px;
    }

    .actions {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: min(100%, 12rem);
    }
}
