body {
    margin: 0;
    padding: 0;
    background-color: #3b434d;
    color: white;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.gears {
    position: relative;
    width: 200px;
    height: 150px;
    margin-bottom: 30px;
}

.gear {
    position: absolute;
    animation: spin linear infinite;
    transform-origin: center center;
}

    .gear.large {
        font-size: 120px;
        animation-duration: 6s;
        top: 5px;
        left: 30px;
    }

    .gear.small {
        font-size: 40px;
        animation-duration: 2s;
        top: 0;
        left: 5px;
    }

    .gear.medium {
        font-size: 80px;
        animation-duration: 3.5s;
        bottom: -25px;
        right: -15px;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.marquee-container {
    width: 400px;
    overflow: hidden;
    white-space: nowrap;
    border: 2px solid white;
    padding: 10px;
    position: relative;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 10s linear infinite;
    font-size: 18px;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.title {
    margin-top: 30px;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.message {
    font-size: 18px;
    max-width: 700px;
}
