@font-face {
    font-family: "Playfair Display";
    src:
        url("fonts/PlayfairDisplay-VariableFont_wght.ttf") format("truetype")
    }
:root {
    --preview-background: #e8e8e7fa;
    --preview-header-height: 30px;
}
html {
    background: rgb(38,38,38);
    background: linear-gradient(90deg, rgba(38,38,38,1) 0%, rgba(34,13,12,1) 47%, rgba(2,20,24,1) 100%);
    background-attachment: fixed;
    background-repeat: repeat;
}
body {
    display: flex;
    flex-direction: column;
    font-family: "Playfair Display", serif;
    color: #bdbdbd;
    font-size: x-large;
    text-align: center;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

iframe {
    width: 100%;
    height: calc(100% - var(--preview-header-height));
    border-width: 0px;
    -ms-touch-action: none;
    touch-action: none;
}
.preview-card {
    height: 60vw;
    width: 90vw;
    max-width: 1200px;
    max-height: 720px;
    border-radius: 10px;
    border: 5px solid var(--preview-background);
    background-color: var(--preview-background);
    margin: 5rem auto;
    font-family: Arial, sans-serif;
    overflow: hidden;
    font-size: medium;
}
.preview-header {
    height: var(--preview-header-height);
    display: flex;
    padding: 3px;
    flex-direction: row;
    align-items: center;
    font-size: 0.9em;
    gap: 10px;
    color: #4e4e4e;
}

.preview-open {
    border: 1px solid #adadad;
    padding: 2px 5px;
    border-radius: 5px;
    margin-right: 5px;
    text-wrap: nowrap;
}
.preview-title {
    font-weight: 800;
    margin-top: 2px;
    width: 100%;
    max-width: 100%;
    text-align: left;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.preview-header img {
    height: 20px;
}
h1, h2 {
    text-align: center;
    font-weight: 300;
    color: white;
}

h1 {
    font-size: calc(2rem + 3vw);
}

h2 {
    font-size: calc(1.3rem + 3vw);
    margin-bottom: .5rem;
}

p {
    max-width: 60ch;
    /* font-family: Arial, sans-serif; */
}

b {
    letter-spacing: 1px;
    color: white;
    text-shadow: 2px 2px 1px #f0569b;
}

#buy-button {
    height: calc(1.5rem + 3vw);
    margin-top: 1rem;
    margin-bottom: 3rem;
}

#underline {
    position: absolute;
    transform: scale(1, 0.3);
    bottom: 0;
    left: 0;
    right: 0;
    fill: #ffffff;
}

.headline {
    position: relative;
}

a {
    color: unset;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}

.share {
    width: 100%;
    max-width: 1rem;
}

footer {
    align-self: flex-end;
    background-color: #2000004d;
    min-width: 100%;
    margin-top: 5rem;
    font-size: small;
    color: #8d8d8d;
    text-align: left;
    display: flex;
}

.footer-p {
    max-width: 10rem;
    padding: 0 3rem;
}

.logo {
    width: 10rem;
    height: 10rem;
}

.vstack {
    display: flex;
    padding: 1rem;
    flex-direction: column; 
}

.footer-header {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

