*{
    /* font-family: 'Noto Sans SC', sans-serif; */
    font-family: 'Istok Web';
    
}

body{
    /* background-color: #0d47a1; */
    font-size: 18px;
    margin: 0;
	background-image: 
	linear-gradient(to right, rgba(133, 192, 231, 0.8), rgba(39, 42, 204, 0.8) ),
	url(../recursos/elearning-getty.jpg);
	min-height: 500px; 
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding-bottom: 30px;
    padding-left: 20px;
}

body>a{
    display: block;
    text-align: left;
}

#selectIniciales{
    text-align: left;
    width: 600px;
    margin: 20px auto;
    display: block;
}

#selectIniciales div{
    margin: auto;
    border: none;
    box-shadow: none;
    display: block;
}

input, button, select{
    font-size: 16px;
}

button, input[type="button"]{
    padding: 10px;
    background-color: #1860ac;
    color: white;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 30px;
    width: 25%;
    /* height: 10%; */
    font-size: 16px;
    transition-duration: 0.5s;
	transition-property: all;
}

button:hover{
    background-color: white;
    color: #1860ac;
}

div{
    background-color: white;
    align-items: center;
    display: inline-block;
    padding: 20px;
    border: solid;
    border-width: 1px;
    border-radius: 8px;
    box-shadow: 5px 10px 12px #3d3d3d;
    overflow: hidden;
}

table{
    border-collapse: collapse;
}

thead{
    background-color: #1860ac;
    color: white;
}

tbody tr:hover{
    transition-duration: 200ms;
    background-color: powderblue;
}

th, td{
    padding: 10px;
    border: #1860ac solid;
    margin: 0;
}

textarea{
    margin-top: 20px;
    width: 80%;
}