/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f9;
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
}

header {
    text-align: center;
    padding: 40px;
    background: #20232a;
    color: #ffffff;
}

footer {
    text-align: center;
    padding: 20px;
    background: #20232a;
    color: #fff;
}

a {
    color: #61fbbc;
}


