body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #ffffff;
    padding: 40px;
}

.logo {
    font-weight: bold;
    display: block;
    color: #000000;
    font-size: 25px;
    text-decoration: none;
}

.nav-links {
    color: #f50000;
}

.nav-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin-right: 20px;
}

.nav-links a:hover {
    text-decoration: none;
    color: #00bfff;
}

.icons-login {
    display: flex;
    align-items: center;
}

.login-button {
    background-color: #ffffff;  
    color: #000;
    border: none;
    padding: 15px 30px; 
    cursor: pointer; 
    transition: .3s ease-in-out; 
    margin-right: 25px;
    border-radius: 10px;
}
.login-button2 {
    background-color: #00bfff;  
    color: #fff;
    border: 1;
    border-radius: 10px; 
    border-color: #00bfff;
    padding: 15px 30px; 
    cursor: pointer; 
    transition: .3s ease-in-out; 
    margin-right: 25px;
}

.login-button:hover {
    background-color: #00bfff; 
    color: white;
}
.login-button2:hover {
    background-color: #fff; 
    color: #00bfff;
}
.icon{
    width: 40px;
    height: 40px;
    padding-right: 30px;
}
.image img{
    width: 651px;
    height: 494px;
    margin-right: 150px;
}
.titulo{
    color: #000;
    font-size: 50px;
}
.Fastfood{
    font-size: 22px;
    color: #909090;
    margin-top: 24px;
    margin-left: 24px;
}
.bntOrder2{
    background-color: #ffffff;
    color: #00bfff;
    border: 1;
    border-radius: 10px; 
    border-color: #007bff;
    padding: 15px 30px; 
    cursor: pointer; 
    transition: .3s ease-in-out; 
    width: 200px;
    height: 55px;
    margin-top: 30px;
    margin-left: 30px;
    font-size: medium;
}
.home1{
    display: flex;
    margin-top: 105px;
    margin-left: 70px;
    justify-content:space-between;
}
.services {
    display: flex;
    justify-content: center;
    padding: 40px 10%;
    gap: 40px;
    flex-wrap: wrap;
    background-color: #fafafa;
  }
  
  .service {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
  }
  
  .service h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .service p {
    font-size: 0.95rem;
    color: #777;
  }
  
  .service.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
  }