
:root {
    --background-body: #293146;
    --text-color: #ffffff;
    font-family: 'Martian Mono', monospace;
    font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Martian Mono', monospace;
    max-width: 1500px;
    width: 100%;
    padding: 0 60px;
    min-height:100vh;
    margin: 0 auto;
    background-color: var(--background-body);
    color: var(--text-color);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

a {
    color: var(--text-color)
}

/*header styles*/
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.header-title {
    margin: 0;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 10px;
}


/* footer styling */
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

.footer-data {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 0 10px;

    font-size: 12px;
    font-weight: 100;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

/* Tablets and smaller (< 1024px) */
@media (max-width: 1024px) {

    body {
        max-width: 80%;
        padding: 0px;
    }

    .header-title {
        font-size: 36px;
    }

    .header {
        padding: 10px 0;
    }

}

/* Tablets and smaller (< 768px) */
@media (max-width: 768px) {

    .header-title {
        font-size: 30px;
    }
}

@media (max-width: 600px) {

    .header {
        margin: 5px 0 0 0;
        align-items: center;
    }

    .header-title {
        font-size: 18px;
    }


}
@media (max-width: 450px) {
.header {
        flex-direction: column; /* Stack Title over Dropdown */
        align-items: flex-start;
        gap: 12px;
        padding: 15px 0;
    }
}