/* Importar fuente */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700');

*{
    font-family: Poppins;
    box-sizing: border-box;
    padding:0;
    margin: 0;
}


body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

header{
    display: flex;
    height: 3rem;
    width: 100vw;
    background-color: #FFF3B0;
    justify-content: center;
    align-items: center;
}

nav{
    width: 80%;
}


nav ul{
    display: flex;
    flex-direction: row; 
    gap: 60px; 
}

nav ul li{
    list-style: none;
    text-align: center;
}

nav a{
    text-decoration: none;
    color: #9E2A2B;
    font-weight: bold;
}

footer{
    width: 100vw;
    background-color: #540B0E;
    display: flex;
    justify-content: center;
}

footer h3{
    color: #FFFCEB;
    font-weight: bold;
    font-size: 1.15em;
}

footer p{
    color: #FFFCEB;
    font-size: 0.9em;
}

footer img{
    height: 35px;
    filter: invert(99%) sepia(74%) saturate(511%) hue-rotate(313deg) brightness(111%) contrast(102%);}

.footer-container{
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-div-1{
    width: 32%;
    height: 90%;
    display: flex;
    flex-direction: column;
}

.footer-div-2{
    width: 32%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-div-3{
    width: 32%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.redes-container{
    display: flex;
    flex-direction: row;
    align-content: space-around;
    padding-top: 2px;
    gap: 10px;
}

.exito{
    font-weight: bold;
    color:rgb(109, 218, 0);
    text-align: center;
}

.error{
    font-weight: bold;
    color: crimson;
    text-align: center;
}

.general{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1{
    color: #9E2A2B;
    font-weight: bold;
    text-align: center;
}

button{
    margin-top: 15px;
    width: 100px;
    height: 30px;
    color: #FFFCEB;
    background-color: #540B0E;
    font-weight: bold;
}

option, select{
    width: 120px;
    text-align: center;
}

.grecaptcha-badge {
    position: fixed;
}

table {
    border-collapse: collapse; 
    margin-top: 10px; 
}

 td, th {
    border: 1px solid #ddd;
    padding: 8px;
  }

  th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #540B0E;
    color: white;
  }

@media only screen 
   and (max-width : 768px) {
    .footer-container, header{
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    nav ul{
        gap: 15px; 
    }


}

@media screen and (max-width : 570px) 
   {

    nav ul{
        gap: 5px; 
    }

    footer, header, nav{
        width: 100%;
        min-width: 350px;
        padding-left: 5px;
        padding-right: 5px;
    }

    footer h3{
        font-size: 0.9em;
    }
    
    footer p{
        font-size: 0.7em;
    }

    nav a {
        text-align: center;
    }

    .redes-container{
        gap: 0px;
    }

    footer img{
        height: 25px;
    }
}


