@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;700&family=IBM+Plex+Mono:wght@400;700&display=swap');

html,
body {
    margin: 0;
    font-family: 'IBM Plex Sans', serif;
    background-color: black;
    color: white;
    font-size: 1.5rem;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'IBM Plex Mono', monospace;
    width: fit-content;
    margin-bottom: 0;
    margin-block-end: 0.2em;

}

p {
    font-family: 'IBM Plex Sans', serif;
}

.color {
    background: linear-gradient(to left, #ff8008, #f3a712);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    color: #ff8008;
}
a:active,
a:hover {
    color: #f3a712;
}