/* THIS FILE CONTAINS CODE THAT CONSIDERS GENERAL RULES FOR THE ENTIRE SITE */
html {
    font-size: 16px;
    background-color: var(--footer-color);
    font-family: var(--main-font), sans-serif;
}

/* Give fixed size and center in middle */
nav .container-fluid, .footer-inner, .page, .breadcrumbs {
    max-width: var(--page-w);
    margin: auto;
}

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

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

/* full width */
.full-width {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0.5rem;
}

.full-width.red {
    color: var(--red);
    background-color: var(--red);
}

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

a:hover {
    text-decoration: none;
}

/* give p some padding */
p {
    font-size: 1rem;
    margin: 0;
}

.content {
    padding-bottom: 1rem;
}

.page {
    padding: 0 2rem;
}

/* nav aid, not main navbar */
.breadcrumbs {
    padding: 1rem;
}

/* feedback box */
.feedback-box {
    transition: visibility 500ms ease-in-out;
    display: none;

    /* position */
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translate(-50%, 0);

    /* text */
    text-align: center;
    font-family: var(--main-font), sans-serif;
    font-size: 1.25rem;
    line-height: 4rem;

    /* no select */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */

    /* color */
    background-color: var(--green);
    color: var(--white);

    /* size */
    height: 4rem;
    border-radius: 4rem;
    padding: 0 1rem;

    width: 60%;
    max-width: var(--page-w);

    /* z index */
    z-index: 1030;
}

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

}

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

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

}

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

}