*,
*::before,
*::after {
    box-sizing: border-box
}

* {
    margin: 0
}

body {
    color: black;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance
}

.wrapper {
    display: grid;
    grid-template-areas: "header" "main";
    grid-template-rows: auto 1fr;
    min-block-size: 100vh
}

header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    padding: 1rem 1.5rem
}

main {
    background: #F4F4F4;
    padding: 3rem 1.5rem;
    text-align: center
}

h1,
h2 {
    color: black;
    font-weight: 500;
    line-height: 1.2
}

h1 {
    font-size: clamp(1.5625rem, calc(1.4255rem + 0.6848vw), 1.9563rem);
    margin-block-end: 3rem;
    max-width: 65ch;
    text-wrap: balance
}

h2 {
    font-size: clamp(1.25rem, calc(1.1413rem + 0.5435vw), 1.5625rem);
    margin-block-end: 1.5rem
}

.platforms {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-block-end: 3rem
}

.platforms img {
    margin-block-end: .4rem
}

.platforms p {
    color: #555;
    font-size: .9375rem;
    font-weight: 600
}

.platforms a {
    text-decoration: none;
    color: #555555;
    font-weight: 600;
    transition: opacity 250ms ease;
}

.platforms a:hover {
    opacity: 0.5;
}

.platforms a li {
    margin-block-end: 0rem;
}

@media screen and (min-width:768px) {
    header {
        justify-content: flex-start
    }

    main {
        text-align: left
    }

    .platforms {
        justify-content: flex-start
    }
}

a.link {
    color: #0F61B3;
    font-size: clamp(1.25rem, calc(1.1413rem + 0.5435vw), 1.5625rem);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: .1rem;
    text-decoration-skip-ink: none;
    text-underline-offset: .2rem
}

a.link:hover {
    text-decoration: none
}

a:focus-visible {
    outline: 2px solid #0F61B3;
    outline-offset: 2px
}

.mys-list-style-none {
    list-style: none;
    padding-left: 0
}