﻿.landing-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background:transparent;
}

.landing-column {
    flex: 0 0 80%;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: transparent;
    position: relative;
    z-index: 0;
}

.landing-content {
    text-align: center;
    color: #fff;
    max-width: 500px;
    padding: 2rem;
    border-radius: 8px;
    background: rgba(30, 30, 30, 0.85);
    box-shadow: 0 8px 24px rgba(0,0,0,0.7);
}

.landing-content-mobile {
    text-align: center;
    color: #fff;
    max-width: 80vw;
    padding: 2rem;
    align-items: center;
    border-radius: 8px;
    background: rgba(30, 30, 30, 0.85);
    box-shadow: 0 8px 24px rgba(0,0,0,0.7);
    z-index: 1;
}

.landing-logo {
    width: 200px;
    margin-bottom: 0rem;
}

.landing-features {
    list-style: none;
    color: white;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

    .landing-features li {
        margin: 0.5rem 0;
        line-height: 1.4;
    }

.titlescreen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3
}

.titlescreen-bg-mobile {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3
}

.select-something-text {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    animation: pulse 5s ease-in-out infinite;
    transform-origin: center;
    margin: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}
