body,
html,
#app {
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    touch-action: none;
}

#app {
    height: 100%;
    font-family: "Montserrat", serif;
}

#app a {
    text-decoration: none;
    color: #fff;
}

.hero {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

h1,
h2,
p {
    margin: 0;
    padding: 0;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
    line-height: 100%;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

h1 {
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-size: 60px;
    font-weight: 500;
    text-transform: uppercase;
}

#canvas {
    position: fixed;
    inset: 0;
    overflow: hidden;
}


/* MOBILE: show the arrows but do NOT rotate the images */
@media (max-width: 768px) {
    .carousel-container .nav-arrow {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 70px;
        margin: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .carousel-container .nav-arrow.up {
        top: 20px;
    }

    .carousel-container .nav-arrow.down {
        bottom: 20px;
    }

    /* keep orientation; no rotate */
    .carousel-container .nav-arrow.up img,
    .carousel-container .nav-arrow.down img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        transform: none;
        /* <-- important */
    }
}