body{
    margin:0;
    padding:0;
    display: flex;
    flex-direction: column;
}
header{
    background-color:#960038;
    color:white;
    display:flex;
    align-items: center;
    padding:20px;
    height: 10%;
}

header h2{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

header a{
    text-decoration:  none;
    color:white;
    background-color:#BF1955;
    padding:10px;
    border-radius: 5px;
    width:auto;
}
header img{
    height:100px;
    margin-right:50px;
}

footer{
    background-color:#960038;
    color:white;
    text-align: center;
    padding:10px;
    bottom:0;
    position:relative;
}

.bienvenida{
    text-align: center;
    margin: 50px;
    background-color: #F0D5DD;
}


.frmVotacion div label{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


.frmVotacion h2,h3 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
}

.votoLogo,.opcionesComida{
    text-align:center;
    width:70%;
}


#votoComida,#votoLogo{
    width:80%;
}

@media screen  and (max-width:1200px){
    header{
        text-align: center;
        height:auto;
    }
    header img{
        height:80px;
        margin-bottom: 10px;
    }
    header h3{
        font-size: 16px;
    }
    header a{
        margin-top: 10px;
        width:auto;
    }

    .nombre{
        flex-direction: column;
        align-items: center;
    }

    .nombre .dato{
        width:80%;
    }
    .nombre label{
        text-align:center;
    }

    .datosEscolares .dato{
        width:10%;
    }
    .datosEscolares{
        justify-content:space-between;
        align-items: center;
    }
    


    .opcionesLogo{
        display:flex;
        text-align: center;
        padding:20px;
    }

    #votoLogo,#votoComida{
        width:80%;
        padding:10px;
        border-radius: 10px;
        border:none;
        margin:auto;
        &:focus{
        outline:none;
        }
    }

    .votoLogo,.opcionesComida{
        margin:auto;
    }
}



table,th,td{
    border:solid black 1px;
    border-collapse:collapse;
}

table{
    width:80%;
    margin:auto;
}
.Programa{
    width:100%;
    padding:10px;

}
/*Estilos para el formulario de votacion*/
.frmVotacion{
    background-color:rgb(219, 198, 198);
    width:50%;
    margin:20px auto;
    padding: 20px;
    border-radius: 10px;
}


.dato{
    display: flex;
    flex-direction: column;
    padding: 10px;
}


.nombre{
    display:flex;

}
.nombre .dato{
    width:100%;
}

.datosEscolares{
    display: flex;
    justify-content: center;
}


.datosEscolares .dato{
    width:30%;
}

.dato label{
    margin:10px;
}
.enviar{
    text-align: center;
}
.enviar input{
    padding:10px;
    background-color:#960038;
    border:none;
    color:white;
    border-radius: 5px;
    &:hover{
        background-color:#BF1955;
        cursor:pointer;
    }
}

.dato input[type=text],select{
    padding:5px;
    border-radius:10px;
    border:none;
    &:focus{
        outline:none;
    }
}

.votoLogo,.opcionesComida{
    text-align:center;
    width:50%;
}

.opcionesLogo img{
    width:60%;
}

.opcionesLogo{
    display:flex;
    text-align: center;
    padding:20px;
}

#votoLogo,#votoComida{
    padding:10px;
    border-radius: 10px;
    border:none;
    margin:auto;
    &:focus{
        outline:none;
    }
}

.votoLogo,.opcionesComida{
    margin:auto;
}



@media screen  and (max-width:600px){
    header{
        text-align: center;
        height:auto;
        flex-direction: column;
    }
    .frmVotacion{
    width: 80%;
    }

    .nombre .dato{
        width:70%;
    }
    .datosEscolares{
        flex-direction: column;
    }
    .datosEscolares .dato{
        width:70%;
    }
    .opcionesLogo{
        flex-direction:column;
    }

}

/*Estilos para el popup del mensaje de guardado*/

.popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
}

.popup .popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  min-width: 250px;
  text-align: center;
  position: relative;
}

.popup .popup-content span {
  position: absolute;
  top: 10px; right: 15px;
  cursor: pointer;
  font-size: 20px;
}

.popup.show {
  visibility: visible;
  opacity: 1;
}
