@font-face {
    font-family: "source-serif";
    src: url("./SourceSerif4-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 1 1000;
    font-style: normal;
}

header {
    color: white;
    text-transform: uppercase;
    margin: 40px 0;
    letter-spacing: 10px;
    text-align: center;
}

.embed {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

body {
    margin: 20px;
    background-color: #000;
}

main {
    /* text-align: center; */
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-bar {
    margin-top: 4px;
    display: flex;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    width: 100px;
}

h2 {
    font-family: "source-serif", serif;
    font-size: clamp(3.25rem, 8vw, 4.25rem);
    line-height: 80px;
    color: white;
    font-weight: 200;
    text-align: center;
    max-width: 740px;
    margin: auto;
}

.brand-orange {
    color: #f77119;
    font-family: "source-serif", serif;

    font-weight: 800;
}
.button-row {
    display: none;
}

@media (max-width: 768px) {
    .button-grid {
        /* display: none; */

        /* grid-template-columns: repeat(6, 1fr); */
    }
    h2 {
        font-size: clamp(2.25rem, 4vw, 4.25rem);

        line-height: 39px;
    }
    body {
        /* width: 100%; */
        /* margin: 10px; */
    }
    img {
        width: 70px;
    }
    .grid {
        grid-template-columns: 50px 50px 50px;
    }
}
.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    max-width: 600px;
    margin: 30px auto 0;
    padding: 16px 24px;

    text-decoration: none;
    color: white;

    border: 1px solid #333;
    border-radius: 12px;
    background: #111;

    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        background 0.15s ease;
}

.banner:hover {
    transform: translateY(-1px);
    border-color: #f77119;
    background: #161616;
}

.banner-label {
    background: #f77119;
    color: black;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 999px;
}

.banner-text {
    font-size: 1.1rem;
}
/* @media (max-width: 480px) {
  h2 {
    font-size: 24px;
    line-height: 28px;
  }
  body {
    width: 100%;
  }
} */

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.audio-player {
    margin: 20px 0;
}
