
        @font-face {
            font-family: "Tenet Sans";
            src: url(../font/TENETSans-Regular.otf);
            font-weight: 400;
        }

        
        @font-face {
            font-family: "Tenet Sans";
            src: url(../font/TENETSans-Bold.otf);
            font-weight: 700;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html, body {
            font-family: "Tenet Sans", sans-serif;
            background: #000;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .container {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .hero {
            width: 100vw;
            height: 100vh;
            background-image: url("../assets/desktop.png");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            /* object-fit: contain; */
            /* display: block;
            background: red; */
        }

        .header {
            color: #ffffff;
            font-size: 40px;
            font-family: "Tenet Sans", sans-serif;
            font-weight: 700;
        }

        .flex {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding-bottom: 100px;
        }

        .socials {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin-top: 40px;
        }

        .socials_titles {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            margin-right: 56px;
        }

        .socials_title {
            color: #ffffff;
            font-size: 24px;
            font-family: "Tenet Sans", sans-serif;
            font-weight: 700;
            opacity: 1;
        }

        .socials_text {
            color: #ffffff;
            font-size: 16px;
            font-family: "Tenet Sans", sans-serif;
            font-weight: 400;
            margin-top: 8px;
            opacity: 0.8;
        }


        .socials_icons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            /* background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%); */
        }

        .socials_icons a {
            display: inline-block;
            width: 48px;
            height: 48px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .socials_icons a:hover { opacity: 1; }

        .socials_icons a img {
            display: block;
            width: 48px;
            height: 48px;
            object-fit: contain;
        }


        @media (max-width: 768px) {

            .hero {
                width: 100vw;
                height: 100vh;
                background-image: url("../assets/mobile.png");
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            .header {
                color: #ffffff;
                font-size: 32px;
                font-family: "Tenet Sans", sans-serif;
                font-weight: 700;
                text-align: center;
            }
            
            .socials {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 500px;
            }

            .socials_titles {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: center;
            margin-right: 0px;
            margin-bottom: 32px;
            }

            .socials_title {
            color: #ffffff;
            font-size: 24px;
            font-family: "Tenet Sans", sans-serif;
            font-weight: 700;
            opacity: 1;
            }

            .socials_text {
                color: #ffffff;
                font-size: 18px;
                font-family: "Tenet Sans", sans-serif;
                font-weight: 400;
                text-align: center;
                margin-top: 8px;
                opacity: 0.8;
            }

            .socials_icons a {
            display: inline-block;
            width: 48px;
            height: 48px;
            opacity: 1;
            }
        }


