/* import font */
@import url('https://fonts.googleapis.com/css2?family=Nata+Sans:wght@100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #24252A;
}

/* -------------------------------------------
    HEADER
---------------------------------------------- */

li, a, button {
    background-color: rgba(0, 0, 0, 0);
    font-family: "Nata Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header {
    background-color: #24252A;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 10%;
    height: 70px;
}

.logo {
    background-color: #24252A;
    margin-right: auto;
    cursor: pointer;
    width: 50px;
    height: auto;
}

.logobtn {
    margin-right: auto;
}

.nav_links {
    background-color: #24252A;
    list-style: none;
}

.nav_links li {
    background-color: #24252A;
    display: inline-block;
    padding: 0px 20px;
}

.nav_links li a {
    background-color: #24252A;
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
    color: rgba(177, 10, 228, 1);
}

button {
    background-color: rgba(0, 0, 0, 0);
    margin-left: 20px;
    padding: 9px 25px;
    background-color: rgba(177, 10, 228, 1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover {
    background-color: rgba(177, 10, 228, 0.8);
}

/* -------------------------------------------
    FOOTER
---------------------------------------------- */

/* sticky footer */
/* Make the page fill the full height of the browser */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Main content will expand to fill space above footer */
main {
    flex: 1;
}


footer {
    background-color: #1a1a1e;
    color: #ddd;
    padding: 20px 10px;
    font-size: 14px;
}

.footer-content {
    background-color: #1a1a1e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

.footer-left {
    background: rgba(0, 0, 0, 0);
    background-color: #1a1a1e;
    display: flex;
    align-items: center;
}

.footer-left p{
    background: rgba(0, 0, 0, 0);
}

.footer-logo {
    background-color: #1a1a1e;
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.footer-title {
    background: rgba(0, 0, 0, 0);
    background-color: #1a1a1e;
    font-family: "Nata Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    font-weight: bold;
}

.footer-links {
    background: rgba(0, 0, 0, 0);
}

.footer-links a {
    background: rgba(0, 0, 0, 0);
    background-color: #1a1a1e;
    font-family: "Nata Sans", sans-serif;
    font-weight: 500;
    color: #ddd;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-right {
    background: rgba(0, 0, 0, 0);
    font-family: "Nata Sans", sans-serif;
    font-weight: 800;
    text-align: right;
}

.footer-right p{
    background: rgba(0, 0, 0, 0);
}

.heart {
    color: red;
    font-weight: bold;
}