@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    text-align: left;
    color: #333;
    background-color: #FFF;
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 1px transparent;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    text-shadow: 0 0 1px rgba(0,0,0,0.01);
}

#header {
    background: rgb(255 255 255/96%);
    border-bottom: 1px solid #f5f4f8;
    z-index: 1200;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}
#header .header-height {
    height: 65px;
}
#header .logo a {
    font-weight: 700;
    color: #333;
    text-decoration: none;
    font-size: 28px;
    letter-spacing: -1px;
}

#footer {
    margin-top: 80px;
    margin-bottom: 50px;
}

.section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.shadow {
    box-shadow: 0 0 25px rgba(var(--bs-body-color-rgb),.1)!important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -1px;
}
.display-6 {
    font-size: 2rem;
    letter-spacing: -1px;
}

.titulo { 
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -1px;
}
.descripcion {
    font-size: 20px;
}
.categoria {
    letter-spacing: 5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #0e6ffd;
}

.card-body {
    padding: 30px 25px;
}
.background {
    background-image: url('assets/img/background.webp');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}
.background .texto {
    color: #FFF;
    text-shadow: 0 1px 5px #000;
}

@media (max-width: 750px) {
    body { font-size: 15px; }
    #header { padding: 5px 0 15px; }
    #header h1 { margin-bottom: 0; }
    #header .logo a { font-size: 24px; }
    #header .header-height { height: 110px; }
    .titulo { font-size: 38px; }
    .descripcion { font-size: 18px; }
    .categoria { padding-top: 90px; }
    .background {
        background-image: url('assets/img/background-sm.webp');
    }
}