*{
    margin: 0;
    padding: 0;
}

a{
    cursor: pointer;
}
#infoLoad.active{
    text-transform: uppercase;
    font-family: 'Courier New', Courier, monospace;
}
#container-load.active{
    background-color: rgba(251, 251, 251, 0.8);
    height: 100%;
    width: 100%;
    position: fixed;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10000;
    padding: 0;
    bottom: 0;
}
#load.active{
    border: 4px solid rgb(181, 178, 178);
    border-top-color: rgb(0, 0, 0);
    border-top-style: groove;
    height: 50px;
    width: 50px;
    border-radius: 100%;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: load 1.5s linear infinite;
    -o-animation: load 1.5s linear infinite;
    animation: load 1.5s linear infinite;
}

@keyframes load {
    from { transform: rotate(0deg);}
    to {transform: rotate(1turn);}
}
