@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');
*
{
    font-family: Montserrat, Helvetica, sans-serif;
}
html, body
{
    overflow: hidden;
    color: var(--color, black);
}
body
{
    background: var(--bg, white);
    display: flex;
    flex-flow: column;
    min-height: 98vh;
}
h1
{
    text-align: center;
    margin: 0;
    letter-spacing: -.015em;
    font-size: 3em;
    font-weight: 400;
    margin-left: -57.5px;
}
.shareButton
{
    background: transparent;
    border:none;
    outline: none;
    width: 90px;
    height: 90px;
    transform: scale(.7);
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.shareButton svg
{
    width: 100%;
    height: 100%;
    fill:  var(--color, black);
}
.logo
{
    width: 150px;
    fill:  var(--color, black);
}
.shareButton svg:hover
{
    opacity: .9;
}
#copyFeedback
{
    position: absolute;
    text-align: right;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color, black);
    transition: opacity 300ms;
    opacity: 0;
    pointer-events: none;
    background: var(--bg);
    box-shadow: var(--color) 0 1px 2px;
    font-weight: 500;
    height: 20px;
    line-height: 20px;
    font-size: 15px;
    padding: 5px 15px;
    border-radius: 15px;
}
@media screen and (max-width: 600px) {
    h1
    {
        overflow-wrap: break-word;
        font-size: 2em;
        margin-left: -50px;
    }
    .logo
    {
        width: 100px;
    }
    .shareButton {
        width: 70px;
        height: 70px;
        transform: scale(.7);
    }
    #copyFeedback
    {
        right: 50%;
        top: 100%;
        transform: translateX(50%) translateY(8px);
    }
}
header
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 0 1 auto;
}
iframe
{
    width: 100%;
    /*aspect-ratio: 1 / 1;*/
    flex: 1 1 auto;
    border: none;
}