@font-face {
    font-family: 'TeXGyreHeros';
    src: url('texgyreheros-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    background-color: oklch(14.5% 0 0);
    color: oklch(97% 0 0);
}

body {
    overflow: hidden;
    height: 100vh;
    font-family: 'TeXGyreHeros', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: relative;
    width: 100%;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    height: 100vh;
    padding: 2rem;
    gap: 2rem;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.content * {
    font-size: 1rem;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: oklch(97% 0 0);
}

::selection {
    background-color: oklch(97% 0 0);
    color: oklch(14.5% 0 0);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 2rem;
    }

    .text-left {
        text-align: center;
        align-self: flex-start;
        padding-top: 0;
    }

    .text-center {
        text-align: center;
        align-self: center;
    }

    .text-right {
        text-align: center;
        align-self: flex-end;
        padding-bottom: 0;
    }
}
