body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #fff;
    background-image: url('../images/Group110_1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

.extrafooter{
    padding-top: 30px;
    margin-top: 10px;
}
.container {
    text-align: center;
}

.logo {
    width: 125px;
    border-radius: 8%;
}

.title {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    padding: 0 8px 0 8px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 72px;
    margin-top: 5px;
}
.topp{
    margin-top: 32px;
    padding-bottom: 10px;
}

.button {
    display: inline-block;
    padding: 20px 30px;
    font-size: 20px;
    color: #000000;
    border: solid black 3px;
    border-radius: 50px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    text-decoration: none;
    transition: background-color 0.1s ease;
}

.bt3:hover {
    background-color: rgb(37, 99, 235);
    color: white;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
    transform: translate(-8px, -8px);
    
}
.bt2:hover {
    background-color: rgb(3, 153, 3);
    color: white;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
    transform: translate(-8px, -8px);
    
}
.bt1:hover {
    background-color: rgb(207, 76, 76);
    color: white;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
    transform: translate(-8px, -8px);
}

.texxt p{
    /* padding: 10px; */
    margin-top: 36px;
    font-weight: 400;
    font-size: 1em;
}

.marquee {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    white-space: nowrap;
    background-color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.marquee p {
    display: inline-block;
    font-size: 16px;
    color: #c9c6c6;
    margin: 16px;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    padding-right: 2rem; 
    will-change: transform;
}

.bottom{
    position: fixed;
    bottom: 0;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .marquee {
        position: fixed;
        width: 100%;
        background-color: #000000;
        box-shadow: none;
        z-index: 1000;
    }

    .marquee.top {
        top: 0;
    }

    .marquee.bottom {
        bottom: 0;
    }

    .topp{
        margin-top: 100px;
        padding-bottom: 10px;
    }

    .title {
        font-size: 33px;
        color: #333;
        margin-bottom: 40px;
    }
    .buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .buttons {
        margin: 10px 20px; /* Add margin for mobile view */
    }

    .button {
        padding: 10px 15px; /* Further reduced padding */
        font-size: 16px; /* Further reduced font size */
    }
    .texxt p {
        padding: 10px;
        margin-top: 45px;
        font-weight: 400;
        font-size: 0.7em;
    }
    .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
