@charset "UTF-8";
/* CSS Document */

:root {
    --blanco: #FFFFFF;
    --oscuro: #212121;
    --borde: #777777;
    --azul: #1438A6;
    --amarillo: #D99414;
    --gris: #B4A28A;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /*-o-box-sizing: border-box;*/
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    background-image: url("../img/Background_Aristeia_BC.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;

    margin: 0;
    border: none;
    padding: 0;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, Arial, "sans-serif";
}

div, article, aside, figure, header, main, nav, section {
    display: block;
    margin: auto;
    border: none;
    padding: 0;
}

.centerText {
    text-align: center;

}

.header-title {
    background-color: rgba(20, 56, 166, 1);
    margin: 0;
    padding: 10px 5px;
    color: white;
}

footer {
    position: fixed;
    background-color: rgba(20, 56, 166, 1);

    bottom: 0;
    width: 100%;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}
.servoButton {
    border: 1px solid var(--azul);
    border-radius: 8px;
    margin: 8px 0 0;
    padding: 8px;
    color: var(--azul);
    font-weight: bold;
    background-color: var(--blanco);

}
.servoLink {
    text-decoration: none;

}
.servoText {
    font-size: 18px;
}
.servoButton:hover {
    transition: box-shadow .2s ease-out;
    box-shadow: 0 0 10px 1px var(--azul) inset;
    cursor: pointer;
}

