html {
    height: 100%;
    width: 100%;
    margin: 0%;
    scroll-behavior: smooth;
}

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

body {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    flex-direction: column;
    line-height: 1.2;

    padding-left: 20px;

    padding-bottom: 0;
    padding-top: 0.75rem;
    
    min-height: 75px;
    background: #171519;
    color: white;
    align-items: center;
    align-content: center;
}

main {
    flex: 1;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

nav ul a li {
    display: flex;
    justify-content: center;
    align-items: center;
    
    height: 2em;
    color: white;
    margin-left: 80px;
    margin-right: 80px;
    padding-bottom: 0;
}

nav ul a {
    font-size: 16px;
    text-decoration: none;
}

nav ul a:hover {
  background-color: rgba(169, 169, 169, 0.7);
  color: #c7c7c7;
  text-decoration: none;
}

footer {
    background-color: #171519;
    color: white;

    min-height: 80px;
}

footer p {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table.center-el {
    display: table;
    width: 85%;
    max-width: 90%;
    min-width: 20rem;
    margin: 2.5rem auto;
    table-layout: auto;
}

td, th {
    border: 1px solid #bdbdbd;
    text-align: left;
    padding: 1rem;
    font-size: large;
}

/* td {
    font-weight: bold;
} */

tr:nth-child(even) {
    background-color: #dddddd;
}

button {
    font-weight: bolder !important;
}

a {
    /* text-decoration: none; */
    color: black !important;
}

/* h3.custom-font button.custom-font {
    font-weight: bold;
} */

td i {
    margin-right: 1rem;
}

.default-divider {
    margin: 1rem 0;
    border: 1px solid rgba(23, 21, 25, 0.2);
}

.dark-divider {
    margin: 1rem 0px;
    width: 40rem;
    border: 1px solid #494949;
}

.light-divider {
    margin: 1rem 0;
    border: 1px solid rgba(23, 21, 25, 0.5);
}

.light-text {
    font-weight: lighter !important;
    color: #171519;
}

.caption {
    font-weight: normal !important;
}

.banner {
    background-size: cover;
    background-image: url("images/assets/Banner.png");
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
    height: 25rem;
}

.banner::after {
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.custom-font {
    font-family: "Geom", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.toast {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;

    background-color: rgb(255, 91, 91);
    visibility: hidden;

    position: fixed;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);

    min-height: 1.5rem;
    z-index: 5;
}

.toast p {
    padding: 0.5rem 1rem;
    color: white;
    margin: 0;
}

.input-container {
    display: flex;
    flex-direction: column;
    width: 85%;
    margin: 2.5rem auto;
    min-height: 12rem;
}

.input-container textarea {
    flex: 1;
    width: 100%;
    resize: vertical;

    border-radius: 5px 5px 0 0;
}

.input-container button {
    border-radius: 0 0 5px 5px;
    min-height: 2.5rem;
    color: #222;
    background-color: rgb(244, 255, 94);
}

.subtitle {
    margin: 0;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.tarp-image {
    border-radius: 1rem;
    width: 20rem;
    display: block;
    margin: 0 auto;
}

.horizontal-align {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.center-el {
    display: flex;
    justify-content: center;
    
}

.rights-reserved {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
    width: 100%;
}
