* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-repeat: no-repeat;
    font-family: inherit;
    line-height: 1.5;
}

:root {
    --main-color: #65c394;
    --main-dark-color: #2a2b7b;
}

body {
    font-size: 14px;
    font-family: Nunito Sans, sans-serif;
}

a {
    display: inline-block;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

a,
a:hover {
    color: inherit;
    text-decoration: none;
}

img {
    object-fit: cover;
}

button {
    cursor: pointer;
}

.btn {
    padding: 5px 15px;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    border-radius: 2px;
    font-size: 16px;
}

.container {
    width: 85%;
    margin: auto;
}

.section {
    margin-bottom: 10px;
}

.section h3 {
    font-size: 15px;
}


.navbar {
    position: sticky;
    top: 0;
}

.navbar-wrapper {
    background: #222;
    padding: 5px 25px;
    display: flex;
    align-items: center; 
    gap: 10px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    color: #fff;
    box-shadow: 0 0 7px 3px rgba(225, 225, 225, 0.667);
}

.navbar-list {
    display: flex;
    gap: 10px;
    list-style: none;
    justify-content: center;
    width: 100%;
}

.navbar-list li {
    padding: 20px 10px;
}

.main-footer {
    font-size: 13px;
    padding-bottom: 30px;
    padding-top: 40px;
    position: relative;
    z-index: 3;
    color: #444;
    border-top: 1px solid #ddd;
}

.main-footer img {
    width: 100px;
    display: block;
    margin: auto;
}

.page {
    min-height: calc(100vh - 180px);
    position: relative;
}


.page-content {
    position: relative; 
    z-index: 3;
    padding: 10px 0 20px;
    min-height: calc(100vh - 270px);
}