@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #dcdcdc, #bfbfbf);
}

.container {
    text-align: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

h1 {
    font-size: 56px;
    line-height: 60px;
    margin-bottom: 10px;
}

h2 {
    font-size: 36px;
    margin-bottom: 6px;
    color: #222;
}

p {
    color: #555;
    margin-bottom: 20px;
    max-width: 500px;
}

.scrolling-text {
    width: 100%;
    overflow: hidden;
    background: #000;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
}

.text-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 26s linear infinite;
}

.text-track span {
    font-size: 18px;
    color: #fff;
    margin-right: 40px;
    letter-spacing: 1px;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}