* {
    margin: 0;
    padding: 0;
    border-width: 0;
    box-sizing: border-box;
}

body {
    margin: 0px;
    margin-top: 0px;
    font-family: 'poppins',sans-serif;
    background-color: #fff;
}

h1 {
    color: rgb(16,50,142);
    text-align: center;
    font-size: 3.5rem;
    font-weight: 400;
}

h2,h3 {
    color: rgb(0,88,72);
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
}

@media(width <= 750px) {
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }
}

.invisible {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

.display-false {
    display: none !important;
}

.alerta {
    color:crimson;
}

.observacion {
    color: #79c8ae;
}

.ok {
    color:forestgreen;
}

.texto-destacado {
    font-weight: 800;
}

a {
    text-decoration: none;
}

hr {
    height: 1px;
    background-color: #ccc;
}

p {
    margin-bottom: 20px !important;
}

.align-left {
    text-align: left !important;
}

.align-right {
    text-align: right !important;
}

.centrado {
    text-align: center;
}