* {
    box-sizing: border-box;
}

:root {
    --color-background: #d75389;
    --color-link: #ffd5e6;
    --color-link-border: #a6265a;
    --color-text: #ffebf3;
}

html {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: 'DM Sans', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

body {
    color: var(--color-text);
    margin: 0 auto;
    padding: 0;
}

a {
    border-bottom: 2px solid var(--color-link-border);
    color: var(--color-link);
    display: inline-block;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
}

a:hover {
    border-bottom: 2px dotted var(--color-link-border);
}

body {
    align-items: center;
    display: flex;
    height: 100vh;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.c-content {
    margin: 0 auto;
    text-align: center;
    user-select: none;
}

.c-content__inner {
    padding: 2rem;
    position: relative;
}

.c-content__inner-glass {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    left: 0;
    position: absolute;
    right: 0;
    top: 1rem;
    transform: rotate(2deg);
    transition: backdrop-filter 5s ease;
    width: min(100%, 450px);
}

.c-content__inner-glass:hover,
.c-content__inner-glass:focus {
    backdrop-filter: blur(0);
}

.c-content__video img {
    display: block;
}

.c-footer {
    font-size: 0.85rem;
    inset: auto 0 0 0;
    padding: 1rem 1.5rem 1rem;
    position: fixed;
    text-align: center;
    width: 100%;
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-background: #41061e;
        --color-text: #df4685;
        --color-link-border: #a6265a;
        --color-link: #d23978;
    }
}

@media (max-width: 600px) {
    .c-content {
        transform: scale(0.75);
    }
}