* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html , body {
   height: 100%;
}

body {
font-family: 'Poppins';
    background: #ffffff;
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.container {
    position: relative;
    width: 100%;
   height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#orbyte-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    will-change: transform;
    contain: layout style paint;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transform: translateZ(0);
        padding: 30px;
}

.content {
    position: relative;
    z-index: 20;
    text-align: center;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.content .tagline {
    justify-self: end;
    padding-top: 60px;
}

.logo-area {
    pointer-events: auto;
}

.logo-img {
    max-width: 380px;
    width: 100%;
    height: auto;
    display: block;
       animation: logoDrop 1.2s cubic-bezier(.22,1,.36,1) forwards;
    opacity: 0;
}

.btn-outline {
    pointer-events: auto;
    display: inline-block;
    padding: 5px 28px 7px 28px;
    border: 1px solid #000;
    border-radius: 50px;
    color: black;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.2s ease;
    background: transparent;
    margin-top: 30px;
     animation: buttonRise 1.2s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay: .4s;
    opacity: 0;
    margin-top: 120px;
}

.btn-outline:hover {
    border-color: #000;
    background: black;
    color: white;
}

.tagline {
    font-size: 16px;
    color: black;
    line-height: 1.6;
     animation: fadeTag 1.4s ease forwards;
    animation-delay: .4s;
    opacity: 0;
    position: fixed;
    bottom: 15px;
    font-weight: 400;
    text-align: center;
}



@keyframes logoDrop {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes buttonRise {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeTag {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-img {
        max-width: 200px;
    }

    .btn-outline {
        font-size: 13px;
        padding: 8px 22px;
    }

    .tagline {
        font-size: 13px;
    /* bottom: 20px; */

        /* margin-top: 40px; */
        /* padding: 0 20px; */
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-width: 200px;
    }

    .btn-outline {
        font-size: 12px;
        padding: 7px 18px;
        margin-top: 70px;
    }

  

    .tagline {
        font-size: 11px;
        /* margin-top: 0px; */
    }
    /* .content .tagline {
    justify-self: end;
    padding-top: 0px;
    padding-bottom: 30px;
} */
#orbyte-canvas {
        padding: 0px;
}
}
