* {
    font-family: "IBM Plex Serif", serif;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    max-height: 10vh;
    background-color: #0A2F37;
    color: white;
    padding: 20px 0;
    text-align: center;
    h1 {
        color: #fff;
    }
}

main {
    max-height: 70vh;
    padding: 20px;
    max-width: 60vw;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1, h2 {
    color: #0A2F37;
}

ul {
    list-style: disc;
    margin-left: 20px;
}

footer {
    max-height: 10vh;
    text-align: center;
    padding: 10px 0;
    background: #222;
    color: white;
    position: relative;
}
