:root {
    --main-width: 85vw;
    --text-color: #C71585;
    --bg-color: white;

}

@media (prefers-color-scheme: dark) {
    :root {
      --bg-color: #212121;
      --text-color: #FF69B4;
    }
}

/* large screen */
@media only screen and (min-width: 868px) {
    :root {
        --main-width: 50vw;
    }
}
  

html {
    font-family: Noto Sans;
    scroll-behavior: smooth;
    color: var(--text-color);
}
  
body {
    max-width: var(--main-width);
    margin-left: auto;
    margin-right: auto;
    background-color: var(--bg-color);
}

h1 {
    padding-bottom: 0;
}  
  
a {
    color: var(--text-color);
    text-decoration: none;
}
a:hover {
    color: var(--bg-color);
    text-decoration: underline;
    text-decoration-color: var(--text-color);
}