*{
    margin: 0;
    padding: 0;
    transition: 0.5s;
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    height: 100vh;
    width: 100%;
    position: relative;
}

footer{
    bottom: 0;
    left: 0;
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--dark);
    color: white;
    background-color: #1d1d1d;
}

.copyright-container{
    background-color: #2b2b2b;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright{
    color: white;
    font-size: 15px;
    opacity: 0.7;
    font-weight: 400;
    padding: 10px 0;
}

.footer-menus{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 40%;
}

.footer-container{
    height: fit-content;
    width: 100%;
    padding: 3rem 6rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-content-container{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

footer .website-logo{
    margin-bottom: 1.2rem;
    font-size: calc(1vw + 20px);
}

.footer-info, .menu-item-footer{
    margin: 0.2rem 0;
    opacity: 0.7;
    color: white;
    text-decoration: none;
    transition: 0.5s;
}

.menu-item-footer:hover{
    opacity: 1;
}

.menu-title{
    font-size: var(--medium-text-font);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.social-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 100%;
}

.social-link{
    height: 100%;
    width: 40px;
    background-image: url(../imagenes/FacebookBlanco.png);
    background-size: 70%;
    background-position: center;
    margin-right: 1rem;
    background-repeat: no-repeat;
}

.social-link:hover{
    opacity: 0.7;
}
footer .social-link:nth-of-type(2){
    background-image: url(../imagenes/x.png);
}




/*MEDIA QUERY*/
@media (max-width: 768px){
    
    .footer-container{
        padding: 2rem;
        flex-direction: column;
    }

    .footer-content-container{
        width: 100%;
        padding: 2rem 0;
        border-bottom: 1px solid #2A2A2A;
        justify-content: center;
        align-items: center;
    }

    .footer-content-container:nth-of-type(1){
        align-items: flex-start;
    }
    .footer-content-container:nth-of-type(3){
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-menus{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border-bottom: 1px solid #2A2A2A;
    }

    .footer-menus .footer-content-container:nth-of-type(1){
        width: 45%;
        align-items: flex-start;
        border-bottom: none;
    }
    .footer-menus .footer-content-container:nth-of-type(2){
        width: 45%;
        align-items: flex-start;
        border-bottom: none;
    }
}
.letter-container {
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
  }
  
  .letter {
    font-size: 35px;
    font-weight: bold;
    transform: skewX(-20deg);
    display: inline-block;
    letter-spacing: -3px; /* Ajusta el espaciado entre las letras */
    margin-right: 0px; /* Ajusta el espaciado entre la letra y el tachado */
  }
  
  .strikethrough {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #121212;
    top: 59%;
    transform: translateY(-50%);
  }
  .footer-info a {
    margin: 0.2rem 0;
    color: white;
    text-decoration: none;
    transition: 0.5s;
}
.usuarios{
    margin-top: 100px;
    display: flex;
    justify-content: center;
}
#campo{
    width: 30vh;
    border-radius: 30px;
    height: 30px;
    padding-left: 40px;
    background-image: url('../imagenes/lupa.png');
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 20px 20px;
    transition: width 0.4s;
}
#campo:focus{
    width: 60vh;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}
.pedidot{
    margin-top: 0px;
    display: flex;
    justify-content: center;
}
.tablau {
    border-collapse: collapse;
    width: 80%;
}

.tablau th, .tablau td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

.tablau tr:nth-child(even) {
    background-color: #f2f2f2;
}

.tablau th {
    background-color: #555555;
    color: white;
}