CSS de iniciación

Código que se puede usar de inicio

html {
        font-size: 62.5%;
        box-sizing: border-box;
}
*, *:before, *:after {
        box-sizing: inherit;
}
body {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.5;
}
h1 { font-size: 6rem; }
h2 { font-size: 4.8rem; }
h3 { font-size: 3.6rem; }
h4 { font-size: 2.4rem; }
a {
        text-decoration: none;
}
ul {
        list-style: none;
        margin: 0;
        padding: 0;
}
main ol, main ul {
 padding-left: 1.5em;
}
main ul {
 list-style-type: disc;
}
img {
        max-width: 100%;
        height: auto;
}
.container {
        max-width: 120rem;
        width: 95%;
        margin: 0 auto;
}

afas

assaf