.container {
    height: 100vh;
    width: 100%;
    background: white;
    padding: 20px;
}

img {
    width: 200px;
    margin-top: 40px;

}


     /* Small demo reset */
 * { box-sizing: border-box; }

/* Shared button style */
.btn {
    display: inline-flex;              /* prevents anonymous inline boxes behind text */
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;                        /* visible text color */
    background: #3fa6a6;
    border: 0;
    border-radius: 24px;
    font-family: "Helvetica";
    text-decoration: none;              /* remove underline for <a> */
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(15,23,42,0.12);
    transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
    line-height: 1;                     /* avoid extra inline-box height */
    background-clip: padding-box;       /* keep background inside rounded corners */
    -webkit-appearance: none;           /* remove native UA styling (Safari) */
    appearance: none;
    -webkit-tap-highlight-color: transparent; /* remove mobile tap highlight */
}

/* Wrap text in a span and make sure its background is transparent */
.btn > span {
    display: inline-block;
    padding: 0;
    margin: 0;
    background: transparent !important; /* critical if some UA paints a fill */
    color: inherit;
    -webkit-text-fill-color: inherit;   /* Safari: ensure text is the same color */
}

/* Hover: subtly darken (no gradient swap) */
.btn:hover {
    filter: brightness(0.90);
    box-shadow: 0 10px 24px rgba(15,23,42,0.14);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 12px rgba(15,23,42,0.12);
}

/* Keep accessibility: styled focus ring rather than default outline */
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(99,102,241,0.18);
}

div {
        margin-bottom: 20px;
}

@media (min-width: 576px) {
    .row {
        display: flex;
        gap: 16px;
        align-items: center;
    }
}

.header {
    font-family: Poppins;
    font-size: 30px;
    font-weight: 300;
    line-height: 46px;

    strong {
        font-weight: 600;
    }
}
p {
    font-size: 24px;
    font-weight: 300;
    line-height: 30px;
}

.teal {
    color: #3fa6a6;
}

p {
    font-family: Poppins;

    strong {
        font-weight: 600;
    }
}