/*GENERAL STYLING*/


/*HEADER LOGO*/

.headerLogo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 35%;
}


/** CABECERA FIJA**/

div.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #404040;
    font-size: 20px;
}


/* Personalizar texto */

body {
    background-color: #404040;
    height: 100%;
    width: 100%;
}

h1 {
    color: whitesmoke;
    font-family: 'Rajdhani';
}

h2,
h5 {
    color: whitesmoke;
    font-family: "Roboto";
    font-weight: lighter;
}

p {
    color: whitesmoke;
    font-family: 'Roboto';
    text-align: justify;
}

.contenido {
    margin: 10%;
}


/*FOOTER*/

.footer-content {
    color: whitesmoke;
    font-family: "Roboto";
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}


/* STICKY SOCIAL MEDIA */

.icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.icon-bar a:hover {
    background-color: #404040;
}

.icon-bar .facebook {
    background: #3B5998;
    color: white;
}

.icon-bar .twitter {
    background: #55ACEE;
    color: white;
}

.icon-bar .instagram {
    background: #DD2A7B;
    color: white;
}