.container {
    max-width: 1570px;
}

@media (max-width: 1600px) {
    .container {
        max-width: 1200px;
    }
}

/*
* Header
*/
.header-title {
    font-size: 2rem;
}

.header-subtitle {
    font-size: 1.25rem;
}

@media (min-width: 390px) {
    .header-title {
        font-size: 2.5rem;
    }

    .header-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .header-title {
        font-size: 3rem;
    }

    .header-subtitle {
        font-size: 1.8rem;
    }
}

/*
* Section
*/
section {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
}

/*
* Custom Text
*/
p, li {
    color: #3F4042;
    line-height: 1.5rem;
}

h6 {
    color: #000;
    font-weight: bold;
    margin-bottom: 1rem;
}

a, a:hover, a:active, a:visited {
    color: var(--bs-dark);
    font-weight: 500;
    text-decoration: none;
}

.text-mono {
    font-family: 'Roboto Mono' !important;
}
.text-rubik {
    font-family: 'Rubik' !important;
}
.fw-medium {
    font-weight: 500;
}

/*
* List
*/
.list-decimal {
    list-style: decimal;
}
.list-none {
    list-style: none;
}