html {
    font-size: 14px;
}

@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;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #F8F9F7; /* root*/
    padding-top: 80px; /*sticky nav bar*/
}

.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;
}





/******* root

*/

* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}



.parent {
    background-color: white;
    height: 15px;
    width: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    vertical-align: middle;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .parent:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 0 8px rgba(255,255,255,0.5), 0 0 12px rgba(255,0,0,0.6);
    }

.child {
    font-size: 28px;
    color: red;
    display: block;
    line-height: 1;
}





.one {
    background-color: #c6a75e;
}

.two {
    background-color: #b8964c;
}