@font-face {
    font-family: 'Unbounded';
    src: url('/fonts/Unbounded-Regular.ttf') format('truetype'), url('/fonts/Unbounded-Bold.ttf') format('truetype');
}

:root {
    --primary-color: #213c2e;
    --bg-color: var(--primary-color);
    --text-color: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Unbounded', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 50px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: x-large;
}

.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-content {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

main {
    width: 100%;
}

section {
    width: 100%;
}

.nav {
    height: 100%;
    width: 100%;
}

.footer {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #fff;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    background-color: var(--primary-color);
    z-index: 99;
}

.h1 {
    font-size: xx-large;
}

.h2 {
    font-size: xx-large;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-5 {
    margin-top: 10rem;
}

.mb-0 {
    margin-bottom: 0;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.justify-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: end;
}

.button {
    outline: none;
    border: none;
    padding: .8rem 1.6rem;
    cursor: pointer;
    box-sizing: border-box;
}

.button--primary {
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: bold;
    font-size: medium;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
    transition: 0.5s ease all;
}

.button--primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid #fff;
}

.w-100 {
    width: 100%;
}

.w-30 {
    width: 30%;
}

.footer-nav-list {
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.link {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease all;
}

.link:hover {
    color: #dcdcdc;
}







