@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Text:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Stack Sans Text', sans-serif;
}

body {
    background-color: #e9ecef;
    color: #262c3b;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
}

footer {
    text-align: center;
    padding: 15px 0;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #555;
}