/* set default font */
html {
    font-size: 16px;

    background-color: var(--footer-color);
    font-family: 'Outfit', sans-serif;
}

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

a:hover {
    text-decoration: none;
}

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

    align-items: center;
}

.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;

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

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

.divider.margin {
    margin-bottom: 1rem;
}

/* main */
main {
    display: flex;
    flex-direction: row;
}

/* Content */
.content {
    width: 100%;
    background-color: var(--white);
    padding: 1rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: #f0f0f0;
}

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

}

/* sm screen */
@media only screen and (max-width: 992px) {
    main {
        flex-direction: column;
    }

    html {
        font-size: 14px;
    }
}

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

}

/* xxs screen */
@media only screen and (max-width: 500px) {
    #brand-name {
        display: none;
    }
}


