html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@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;
}

body {
    min-height: 100vh;
    margin: 0;
    background-color: wheat;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

/*.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}*/

main {
    flex: 1;
    margin-top: 20px;
    margin-left: 40px;
    margin-right: 40px;
}

.footer {
    text-align: center;
    font-size: small;
}

h1 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

    h1 a {
        text-decoration: none;
        color: inherit;
    }

h2 {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

p {
    line-height: 1.6;
}

.top-header {
    margin-left: 100px;
}

.highlight-box {
    max-width: 720px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    border: 1px solid black;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.site-navbar ul {
    list-style-type: none;
    background-color: black;
    padding: 0px;
    margin: 0px;
    overflow: visible;
    display: flow-root;
}

.site-navbar a {
    color: orange;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}

    .site-navbar a:hover {
        background-color: dimgray;
    }

.site-navbar li {
    float: left;
}

.site-navbar .dropdown {
    position: relative;
    float: left;
    overflow: visible;
}

.site-navbar .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    min-width: 125px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

    .site-navbar .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 15px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .site-navbar .dropdown-content a:hover {
            background-color: #ddd;
        }

.site-navbar .dropdown:hover .dropdown-content {
    display: block;
}

.site-navbar .dropdown:hover > a {
    background-color: dimgray;
}

.site-navbar .rut-dropdown .dropdown-content {
    min-width: 160px;
}

    .site-navbar .rut-dropdown .dropdown-content a {
        white-space: nowrap;
    }

.blog-pagination .page-link {
    color: #222;
}

.blog-pagination .page-item.active .page-link {
    background-color: #d8cbb8;
    border-color: #d8cbb8;
    color: #000;
}

.blog-pagination .page-link:hover {
    background-color: #eee9e1;
    border-color: #ccc;
    color: #000;
}

.blog-article {
    max-width: 750px;
    font-size: 16px;
    line-height: 1.7;
    white-space: pre-line;
}
