html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #f0f0f0;
}

.hero-image {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

    .hero-image::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('../images/bg.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
        background-blend-mode: overlay;
    }

header, .container {
    position: relative;
    z-index: 1;
}

@media (min-width: 2000px) {
    .hero-image::before {
        background-size: 100% auto;
        background-position: center top;
    }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus,
.form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.text-table {
    -webkit-text-stroke: 1px;
    font-size: 14px;
}

.texto-area {
    text-align: center;
    background-color: lightgray !important;
    -webkit-text-stroke: 1px;
}

.table-responsive {
    min-width: 545px !important;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
