*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width:100% ;
    height: 100vh;
    display:grid;
    place-items: center;
    background-color:rgb(235, 171, 53) ;
}

.imgslider{
    margin-top: 35px;
    width: 90%;
    height: 600px;
    border-radius: 10px;
    border-color: black;
    background-image: url();
    background-size: 100% 100%;

    animation: changeImage 10s linear infinite;
}
@keyframes changeImage{
    0%{
        background-image: url(homeimg1.png);
    }
    25%{
        background-image: url(homeimg2.png);
    }
    50%{
        background-image: url(homeimg3.png);
    }
    75%{
        background-image: url(homeimg4.png);
    }
    100%{
        background-image: url(homeimg1.png);
    }
    
}
.content{
    color: beige;
    font-weight: 700;
    font-size:xx-large;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
button{
    margin-top: 5px;
    margin-left: 350px;
    height: 50px;
    width: 200px;
    border-radius: 10px;
    font-weight: 800;
    color:black;
    background-color: orangered;
}
.about{
    margin-top: 40px;
    margin-left: 75px;
    display:flex;
    align-items: center;
    justify-content: center;
}
.content{
    color:red;
    
}
.img{
    max-width: 100%;
    max-height: 100%;
}
.text{
    margin-left: 50px;
    font-size: 20px;
    padding-left: 20px;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
   
}

footer {
    background-color: orange;
    color: #1b0101;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: medium;
    font-weight: 500;
    border-radius: 5px;

}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    border-bottom: 2px solid #110303;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.footer-section p {
    margin: 0;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #130202;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-media a {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
}




.legal p {
    margin: 10px 0 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section {
        margin: 10px 0;
        flex: 1;
        min-width: auto;
    }

    .social-media a {
        margin-right: 10px;
    }

    
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 1.2em;
    }

    .footer-section ul li {
        font-size: 0.9em;
    }

    .social-media a {
        font-size: 0.9em;
    }
}
