html, body {
    background-color: #fff;
    color: #636b6f;
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    height: 100vh;
    margin: 0;
}

.full-height {
    height: 100vh;
}

.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.position-ref {
    position: relative;
}

.top-right {
    position: absolute;
    right: 10px;
    top: 18px;
}

.content {
    text-align: center;
}

.title {
    font-size: 84px;
}

.links > a {
    color: #e9ebe2;
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;

    border: 2px solid #80bc00; /* Contorno verde */
    border-radius: 4px;         /* Bordes ligeramente redondeados (opcional) */
    background-color: #88b031;
    transition: all 0.3s ease;
}

.links a:hover {
    color: #469650;
    background-color: #17e636; /* Fondo verde al pasar el mouse */
    transform: scale(1.05);    /* Ligero aumento de tamaño */
}
.m-b-md {
    margin-bottom: 30px;
}