*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    text-align: center;
}

.container {
   
    width: 100%;
    height: 100vh;
   
}



.restaurant {
    background-color: white;
    padding: 15px;
    margin: 50px 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    width: 80%;
}



.restaurant.show {
    opacity: 1;
    transform: translateY(0);
}

.restaurant img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    margin-right: 20px;
}

.restaurant-info {
    flex: 1;
}

.restaurant a {
    text-decoration: none;
    color: #ff5733;
    font-weight: bold;
}

.restaurant a:hover {
    text-decoration: underline;
}

.restaurant-info img{

    width: 30px;
    height: 30px;
}

.contenedorRestaurantes{

    margin-top: 250px;
   
}


.imgCuchi{

    position:fixed;
    display: flex;
    width: 100%;
    background-color: #ff5733;
    align-items: center;
    z-index: 10000;
   top: 0;
}

.imgCuchi img{

    width: 200px;
}

.imgCuchi h1{

    text-transform: uppercase;
    color: white;
    font-family:Verdana, Geneva, Tahoma, sans-serif
   
}

.volverInicio {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 15px;
    background-color: #FFD700;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.seo-texto{
    top: 0;
    left:-9999px ;
    opacity:0;
    font-size:14px;
    position: absolute;
    overflow: hidden;
}


@media (max-width: 600px) {
    .restaurant {
        flex-direction: column;
        text-align: center;
        justify-content: center;
       
    }
    .restaurant img {
        margin-bottom: 10px;
    }

    .imgCuchi{

        flex-direction: column;
        padding: 20px;
        
    }
    .imgCuchi img{

        width: 100px;
    }
    
   .container{

     width: 100%;
   }

   h1{
    
    padding-left: 20px;
    text-align: center;
    font-size: 23px;
   }
}