*, :after, :before {
        box-sizing:border-box
}

html {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        line-height: 1.15;
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color:transparent;
}
        
@media (prefers-color-scheme: light) {
        body {
            background-color: #ebebeb;
            color: #000000;
        }
}
        
@media (prefers-color-scheme: dark) {
        body {
            background-color: #313131;
            color: #ffffff;
        }
}

body {
        margin: 0;
        padding: 20px;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.4;
        text-align: left;
}

h1, h2, h3 {
        color: #5d5be5;
        font-weight: 700;
        line-height: 1;
        margin: 0;
}

h1 {
        font-size: 3rem;
}

h2 {
        font-size: 2rem;
}

a {
        color: #ff365e;
        text-decoration: none;
}

a:hover {
        color: #ff365e;
}
        
p {
        margin: 0;
}
        
section {
        width: 960px;
        margin: 0 auto;
}
        
@media print, screen and (max-width: 960px) {
        body {
            word-wrap: break-word;
        }
        
        section {
            width: auto;
            margin: 0;
        }
}
        
@media print {
        body {
            padding: 0.4in;
            font-size: 12pt;
        }
}
