*{
    padding: 0;
}

body {
    overflow-x: hidden;
    background-color: #DCDCDC;
}

footer {
    background-color: rgb(0, 112, 192);
}

.fondo {
    background-color: rgb(127, 127, 127);
}

.fondo_orange {
    background-color: #f1982c;
}


.fondo_azul {
    background-color: rgb(0, 112, 192);
}

.text_azul{
    color: #0070C0;
}

.text_naranja{
    color: orangered;
}

h1 h2 h3 h4 h5 h6 p {
    color: rgb(0, 0, 0);
}

button {
    display: inline-block;
    padding: 2px 15px;
    margin-bottom: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    background-color: transparent;
    border: none;
    border-radius: 10px;
}

button:hover {
    background-color: #d57d13
}

button:active {
    background-color: #3e8e41;
    box-shadow: 0 5px #666;
    transform: translateY(2px);
}

.boton {
    display: inline-block;
    padding: 2px 15px;
    margin-bottom: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    background-color: transparent;
    border: none;
    border-radius: 10px;
}

.boton:hover {
    background-color: #0070C0;
}

.boton:active {
    background-color: #d57d13;
    box-shadow: 0 5px #666;
    transform: translateY(2px);
}

.sombra{
    box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.3);
}