@font-face {
    font-family: 'ABCDiatypeSemi-Mono-Bold';
    src: url('/fonts/ABCDiatypeSemi-Mono-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ABCDiatypeSemi-Mono-Regular';
    src: url('/fonts/ABCDiatypeSemi-Mono-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

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

html {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body {
    font-family: 'ABCDiatypeSemi-Mono-Regular';
    font-size: 12px;
    color: white;
    line-height: 1.3;
    text-transform: uppercase;
}

.hlgs .cky-notice-des *, .hlgs .cky-preference-content-wrapper *, .hlgs .cky-dma-content-wrapper *, .hlgs .cky-accordion-header-des *, .hlgs .cky-gpc-wrapper .cky-gpc-desc * {
    font-size: 10px;
    line-height: 1.3;
}

.hlgs .cky-notice .cky-title {
    display: none;
}

.hlgs .cky-consent-container .cky-consent-bar {
    padding: 10px 10px;
    border-radius: 0px;
    box-shadow: none;
}

.hlgs .cky-btn {
    font-size: 10px;
    text-transform: uppercase;
    border-radius: 0px;
    padding: 2px 18px;
    border: 1px solid #ffffff;
    margin: 0 10px 0 0;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px;
    z-index: 10;
}

.top-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.top-nav-menu li a {
    color: #fff;
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 10px;
    cursor: pointer;
}

a {
    color: #fff;
    text-decoration: underline;
    text-transform: uppercase;
    cursor: pointer;
}

a:hover {
    opacity: 0.7;
}

.top-nav-menu li a:hover {
    opacity: 0.7;
}

.centered-div {
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 655px;
    z-index: 1;
}

.centered-image {
    max-width: 300px;
    height: auto;
    margin-bottom: 25px;
}

h1 {
    font-family: 'ABCDiatypeSemi-Mono-Bold';
    font-size: 28px;
    color:white;
}

.logo {
    padding-bottom: 25px;
}

.description {
    padding-bottom: 25px;
}

.btn {
    font-family: 'ABCDiatypeSemi-Mono-Regular';
    display: inline-flex;
    background-color: white;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    /*transition: 0.4s;*/
    color: black;
    font-size: 12px;
    text-transform: uppercase;
}

.btn:hover {
    opacity: 0.7;
}

.button-container {
    display: flex;
    gap: 15px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

footer {
    font-family: 'ABCDiatypeSemi-Mono-Regular';
    width: 100%;
    padding: 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-menu li a {
    color: #fff;
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 10px;
}

.footer-menu li a:hover {
    opacity: 0.7;
}

@media (max-width: 600px) {
    .centered-div {
        width: 100%;
        padding: 20px;
    }

    .logo {
        padding-bottom: 20px;
    }

    .description {
        padding-bottom: 20px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 10px;
    }

    .centered-image {
        max-width: 250px;
    }

    .footer-menu {
        gap: 15px;
    }

    .btn {
        font-size: 10px;
    }

    .hlgs .cky-notice-des *, .hlgs .cky-preference-content-wrapper *, .hlgs .cky-dma-content-wrapper *, .hlgs .cky-accordion-header-des *, .hlgs .cky-gpc-wrapper .cky-gpc-desc * {
        font-size: 8px;
    }
    
    .hlgs .cky-btn {
        font-size: 8px;
    }
}