body {
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.intro-container {
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.bus {
    position: absolute;
    bottom: 100px;
    left: -400px;
    animation: driveBus 6s ease-in-out forwards;
}

.bus-top, .bus-bottom {
    width: 250px;
    background-color: red;
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
}

.bus-top {
    height: 60px;
    border-bottom: 3px solid #b30000;
}

.bus-bottom {
    height: 80px;
    border-top: 3px solid #b30000;
}

.windows {
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

.window {
    width: 30px;
    height: 30px;
    background-color: #e0f7fa;
    border: 2px solid #004d40;
    border-radius: 4px;
}

.destination {
    position: absolute;
    top: 5px;
    left: 10px;
    background-color: #fff;
    color: #000;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: bold;
}

.wheels {
    position: absolute;
    bottom: -15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.wheel {
    width: 25px;
    height: 25px;
    background-color: black;
    border-radius: 50%;
}

.lights {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.light {
    width: 10px;
    height: 10px;
    background-color: yellow;
    border-radius: 50%;
}

.text-content {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s ease, transform 1.5s ease;
    margin-top: 200px;
}

.text-content.show {
    opacity: 1;
    transform: translateY(0);
}

.logo {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.title {
    font-size: 3em;
    color: #2c3e50;
    margin: 0;
}

.slogan {
    font-size: 1.5em;
    color: #34495e;
    margin-top: 10px;
}

@keyframes driveBus {
    to {
        left: 120%;
    }
}


