/* set default font */
html {
    font-size: var(--font-size);

    background-color: var(--background-color);
    font-family: var(--main-font), sans-serif;
}

/* set ref default */
a {
    color: var(--link);
}

a:hover {
    text-decoration: none;
}

/* brand rules */
.brand-container {
    height: 100%;
    display: flex;
}

.brand-logo {
    height: 3rem;
}

.brand-logo img {
    height: 100%;
}

.brand-name {
    font-family: var(--brand-font), serif !important;
    font-weight: bold;
    font-size: 1.5rem;
    margin-left: 0.5rem;

    display: flex;
    align-items: center;

    color: var(--text);
    text-wrap: nowrap;
}

/* Content */
.content {
    width: 100%;
    background-color: var(--white);
}

/* comp */
.comp {
    width: 100%;
    max-width: var(--page-w);
    margin: 2rem auto;

    padding: 0 1rem;
}

.comp.wide {

    max-width: unset;
    padding: 0;
    margin: 0;
}

/* divider */
.divider {
    width: 100%;
    height: 2px;
    background-color: var(--gray);
}

.divider.margin {
    margin: 2rem 0;
}

/* Footer */
footer {
    background-color: var(--white);
}

/* Responsiveness */
/* md screen */
@media only screen and (max-width: 1200px) {

}

/* sm screen */
@media only screen and (max-width: 992px) {
    html {
        font-size: var(--font-size-mobile);
    }
}

/* xs screen */
@media only screen and (max-width: 768px) {

}

/* xxs screen */
@media only screen and (max-width: 500px) {

}


