@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    box-sizing: border-box;
}

main {
        padding:
        20px
        0
        42px;
}

@media (max-width: 768px) {
    main {
        padding:
        20px
        0
        42px;
    }
}

html {
    background: #f7f4ef;
    overflow-x: clip;
}

body {
    margin: 0;
    overflow-x: clip;

    background: #f7f4ef;
    color: #202024;

    font-family: "IBM Plex Mono", monospace;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select {
    font: inherit;
}