/* GENERAL */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;

    display: grid;

    background-size: cover;
    background-position: center;
}

/* GENERAL TAGS */

li {
    list-style-type: none;
    margin: 0px 10px;
}


/* HEADER */
header {
    grid-row-start: 1;
    grid-row-end: 2;

    display: grid;

    z-index: 1;

    position: fixed;
    top: 0px;
    left: 0px;
}

nav>li {
    padding: 5px;
    border-radius: 10px;
}

.nav-button {
    border-bottom: 2px solid transparent;
}

/* SECTION */
.container-body {
    grid-row-start: 2;
    grid-row-end: 3;

    overflow: auto;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.container-banner-wide {
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    background-position: center;
    background-size:cover;
}

.container-content {
    width: 1300px;
    max-width: 90vw;
    min-height: max-content;
    padding: 40px 10%;
}

.container-wide {
    width: 100%;
    max-width: 100%;
}

.container-element {
    width: fit-content;
    padding: 10px;
}

/* FOOTER */
footer {
    width: 100%;
    min-height: 100px;

    display: flex;
    justify-content: center;
    
    color: rgb(57, 80, 80);
    background-color: rgb(33, 46, 46);
    border-top: 1px rgb(16, 22, 22) solid;

    padding-top: 10px;
}

/* BUTTONS */
.button-active,
.button-passive {
    width: 120px;
    min-width: max-content;
    padding: 5px 10px;
    margin: 15px 10px;
}

/* TEXT */
button,
a {
    text-decoration: none;
    outline: none;
    background: transparent;
    border: none;
    padding: 0px;
    margin: 0px;
}


h1 {
    margin-bottom: 30px;
}

h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
}

/* TABLES */

table {
    width: 90%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

td {
    padding-left: 20px;
}

.td-fc-styled {
    font-weight: bold;
    text-align: right;
    padding: 15px 20px 15px 0px;
    border-right: 15px rgb(126, 179, 179) solid;
}

.td-top-left {
    border-top: 1px rgb(126, 179, 179) solid;
}

.td-bottom-right {
    border-bottom: 1px rgb(126, 179, 179) solid;
}

/* FORMS */
label {
    font-weight: bold;
}

input {
    outline: none;
    border-style: solid;
    border-width: 1px;
    margin-bottom: 2px;
    padding: 2px;
}

/* STANDARD STYLING CLASSES */
.style-align-center-children {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.style-align-center {
    align-self: center;
}
