* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;

    font-family:
        "Manrope",
        "Segoe UI",
        sans-serif;

    background: #f8fafc;
    color: #0f172a;
}

main {
    flex: 1;
}