html, body {
    display: flex;
    flex-direction: column;
    background: rgb(var(--bg));
    color: rgb(var(--text));
}

* {
    background: rgb(var(--bg));
    color: rgb(var(--text));
}

body {
    min-height: 100vh;
}

header {
    margin: 0;
    padding: 0;
    background-color: rgb(var(--accent));
    border-bottom: 1px solid rgb(var(--accent2));
    margin-bottom: 1rem;
}

main {
    margin: 0;
    padding: 0;
    margin-top: 60px;
}

footer {
    margin: 0;
    padding: 0;
    color: white;
    background-color: #5a6268;
    height: 30px;
    display: block;
    clear: both;
}

footer div.col-lg-6:nth-child(2) {
    display: flex;
    justify-content: end;
    align-items: center;
}

/* ----- To top button ----- */
#toTop {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 99;
    border-color: rgba(var(--text), 0.2);
    outline: none;
    background: rgb(var(--text));
    color: rgb(var(--bg));
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 5px 8px 2px rgba(var(--text) 0.4);
}

#toTop:hover {
    background: rgb(127, 127, 127);
    border-color: rgba(127, 127, 127, 0.8);
}

.fhp {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}
