:root {
    --verde: #99CC33;
    --verde2: #0a6b11;
    --naranja: #FF6600;
    --amarillo: #F6D44C;
    --gris: #484848;
    --grisclaro: #E0E0E0;
}

@font-face {
    font-family: titu;
    src: url("/fonts/Dubai-Bold.ttf") format("opentype");
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--gris);
}

a {
    text-decoration: none;
    color: white;
}

a:hover {
    text-decoration: none !important;
}

.columna {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fila {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}