html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}


.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas con igual ancho */
    gap: 20px; /* Espacio entre las columnas */
    padding: 20px; /* Espacio alrededor del contenido */
}

.grid-item img {
    max-width: 100%; /* La imagen no debe exceder el ancho de su contenedor */
    height: auto; /* La altura se ajusta automáticamente para mantener la proporción */
}

.textDere {
    text-align: right;
    font-size: 20px;
    font-weight: bold; 
}
body {
    background-color: #70be45;
    background-image: linear-gradient(296deg, #70be45 0%, #006cb7 50%, #ffffff 100%);
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}

#box {
    
    margin: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 10px;
}

#box1 {
    width: 300px; /* Puedes ajustar este valor según tus necesidades */
    margin: 40px auto; /* auto en el margen horizontal para centrar */
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 10px;
}
/* Footer*/ 

footer{
    margin-top: 22.8%;
    bottom: 0;
    width: 100%;
    background-color: #282828;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footerContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.icon-container {
    display: flex;
    justify-content: center;
}

#FooterIcon{
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 15px;
}

#LogoIcon{
    padding-bottom: 5px;
    margin-right: 5px;
    margin-left: 5px;
}

#iconCol{
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    color: #6B6B6B;
    align-items: center;
    margin-bottom: 30px;
}

#logoCol{
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    color: #6B6B6B;
    align-items: center;
}

/*NavBar*/ 
nav{
    margin-bottom: 20px;

}

.nav-link{
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    font-weight: bold;
}