@font-face {
    font-family: "Dongle";
    src: url("../fonts/dongle-300.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Dongle";
    src: url("../fonts/dongle-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Dongle";
    src: url("../fonts/dongle-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Dongle", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    letter-spacing: 0.02em;
    font-size: 24px;
    line-height: 1.2rem;
    font-weight: 300;
    font-style: normal;
    color: #fffbf1;
    background-color: #003333;
}

h1 {
    font-family: "Dongle", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: 2.7rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #00BBBB;
}
h2 {
    font-family: "Dongle", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 1.7rem);
    line-height: 1.3;
    font-weight: 400;
    color: #00BBBB;
}
.color-red {
    color: rgb(255, 26, 76);
}
/* --------------------------------------------- */
a {
    color: #00BBBB;
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: #E9BF36;
    text-decoration: none;
    transition: color 0.3s;
}
/* --------------------------------------------- */
table, tr, td {
    vertical-align: top;
}
td  {
    padding: 0 10px 0 0;
    margin: 0;
}
td:last-child  {
    padding-right: 0;
}
td p {
    margin: 0 0 10px 0;
}
/* --------------------------------------------- */
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* --------------------------------------------- */
.page__content {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: inset 0 0 10em rgba(0,0,0,0.2);
}
.content {
    max-width: min(100%, 50rem);
}
.logo {
    display: block;
    margin: 0 auto;
    width: min(100%, 28rem);
    height: auto;
}
/* --------------------------------------------- */
.grid  {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    flex-grow: 1;
    align-items: center;
    margin: auto;
    width: 100%;
    text-align: center;
}
.grid__item {
    display: flex;
}
/* --------------------------------------------- */
.page__footer {
    display: flex;
    justify-content: center;
    padding: 0.5rem 1rem 1.5rem;
}
.navFooter {
    display: flex;
    margin: auto;
}
.navFooter__list {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navFooter__item {
	display: flex;
    margin: 0;
    padding: 0;
}
.navFooter__text {
	display: flex;
    margin: 0;
    padding: 10px 5px;
    font-weight: 400;
    letter-spacing: 0.04em;
}