html,
body,
#viewDiv{
	padding: 0;
	margin: 0;
	height: 98%;
	width: 100%;
}

#contenedor {
    width: 100%;
    height: 100%;
}

#header {
    height: 6%;
    display: flex;
    justify-content: space-between;
    background-image: linear-gradient(to right, #938bed, #9297ea, #95a1e5, #9cabde, #a6b4d7, #a4bbdc, #a4c2df, #a4c8e2, #8ad1ed, #68daf1, #3ee3ec, #10ebdd);
}

#title {
    text-align: center;
    margin: auto;
    margin-left: 30px;
    font-size: 30px;
    overflow: hidden;
    font-family: Bodoni Bd BT;
    font: bold;
    color: black;
    text-shadow: 2px 2px 2px white;
}

#imagen {
    display: block;
    margin: auto;
    margin-right: 10px;
    height: 45px;
    width: 45px;
}

.loading-spinner {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    display: "block";
    pointer-events: none;
    width: 4em;
    height: 4em;
    border: 0.4em solid transparent;
    border-color: #eee;
    border-top-color: #0079c1;
    border-radius: 50%;
    animation: loadingspin 1s linear infinite;
}

@keyframes loadingspin {
    100% {
        transform: rotate(360deg);
    }
}