:root {
    --bs-font-sans-serif: 'Roboto',system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --bs-font-serif: 'Roboto Slab',system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --bs-primary: #253876;
    --bs-secondary: #3FA4A9;
    --decorative-gradient: linear-gradient(60deg, #5578AA 0%, #3FA4A9 50%, #87D7DC 100%);
    --decorative-gradient-vertical: linear-gradient(110deg, #5578AA 0%, #3FA4A9 50%, #87D7DC 100%);
    --bs-link-color: #3FA4A9;
    --bs-link-color-rgb: 63,164,169;
    --bs-link-hover-color: #253876;
    --bs-link-hover-color-rgb: 37,56,118;
    --shadow: 0 0px 2px 1px rgba(0,0,0,0.03), 0 4px 5px 1px rgba(0,0,0,0.07), 0 6px 13px 2px rgba(0,0,0,0.07);
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 300;
    src: url('./assets/fonts/roboto/roboto-slab-v34-latin-300.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 400;
    src: url('./assets/fonts/roboto/roboto-slab-v34-latin-400.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 700;
    src: url('./assets/fonts/roboto/roboto-slab-v34-latin-700.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('./assets/fonts/roboto/roboto-v30-latin-300.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('./assets/fonts/roboto/roboto-v30-latin-400.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('./assets/fonts/roboto/roboto-v30-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('./assets/fonts/roboto/roboto-v30-latin-700.woff2') format('woff2');
}

body {
    display: flex;
    min-height: 100svh;
    align-items: center;
    justify-content: center;
    position: relative;
}

a {
    text-decoration: none;
    transition: color 0.3s linear;
}

.footer {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 12px;
    padding: 0.5rem 0.75rem;
    background-color: rgba(255,255,255,0.8);
    display: flex;
    gap: 1rem;
    border-top-left-radius: 0.75rem;
}

.headline {
    position: absolute;
    right: 50px;
    bottom: 50px;
    z-index: 2;
    border-radius: 2rem;
    background: var(--decorative-gradient);
    padding: clamp(1rem, -0.5rem + 8.333vw, 2rem);
    transform: rotate(-3deg);
    box-shadow: var(--shadow);
    max-width: calc(90vw - 50px);
}

.headline p {
    color: #fff;
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 0;
}

h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-family: var(--bs-font-serif);
    color: #fff;
    font-weight: 700;
    margin: 0 0 0.65rem;
    line-height: 1.1;
}

.fullscreenvideo {
    display: flex;
    min-height: 100svh;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.fullscreenvideo video {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}