﻿/* white_page_fonts.css – matches the look of new.chem.msu.ru typical pages */

/* Optionally load Roboto from Google Fonts (uncomment if you want explicit Roboto) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    /* First choice: Roboto, then system sans-serif fallbacks */
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI",
                 "Helvetica Neue", Arial, sans-serif;
    color: #1b1b1d;          /* matches --title and --text */
    background-color: #ffffff; /* matches --bg-primary */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #1b1b1d;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 10px;
}

a {
    color: rgba(65, 119, 196, 1); /* --primary */
    text-decoration: none;
}
a:hover {
    color: rgba(93, 158, 232, 1); /* --hover */
    text-decoration: underline;
}

p {
    margin-bottom: 1em;
}

ul, ol {
    padding-left: 20px;
}
