:root {
    --colorLetra: #f8f9fa;
    --blue: #007bff;
    --pink: #e83e8c;
    --red: #dc3545;
}

a {
    text-decoration: none;
}

a,h1,h4 {
    color: var(--colorLetra);
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: linear-gradient(to bottom right, var(--blue), var(--pink));
}

#logo {
    margin-top: 3%;
    display: flex;
    justify-content: center;
}

#cuerpoInfo {
    height: 80%;
    text-align: center;
    padding: 4%;
    margin: 5% auto;
}

#contBtn {
    margin: 3.5% 0;
    display: flex;
    justify-content: center;
}

.btnBackHome {
    background-color: #45c716 !important;
    font-weight: 500;
    padding: 9px 22px !important;
    margin-left: 10px !important;
    text-transform: uppercase;
    box-shadow: 0px 8px 10px -3px rgba(61, 70, 80, 0.15);
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 20%;
}