@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,600;1,400;1,600&display=swap');

html, body {
    line-height: 1.67;
    font-size: 16px;
    font-family: Lato, Helvetica Neue, Helvetica, sans-serif;
    margin: 0 auto 180px;
    padding: 0 10px;
    max-width: 95%;
    color: rgba(0, 0, 0, .75);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
}

.center svg {
    width: 25px;
    height: 25px;
    fill: rgba(0, 0, 0, .75);
    margin-left: auto;
    margin-right: 1%;
}

.center svg:hover {
    fill: rgba(0, 0, 0, .65);
}

.center a {
    color: white;
    background: rgba(0, 0, 0, .75);
    padding-left: 1%;
    padding-right: 1%;
    border-radius: 3px;
}

.center a:hover {
    background: rgba(0, 0, 0, .65);
}

@media (min-width: 768px) {
    html, body {
        max-width: 80%;
        padding: 0 20px;
    }
}

@media (min-width: 1024px) {
    html, body {
        max-width: 70%;
        padding: 0 30px;
    }
}

h1, h2, h3, h4, h5, h6 {
    margin: 1.2em 0;
    line-height: 1.33;
}

h3 {
    margin-bottom: 0.8em;
}

h1:after, h2:after {
    content: "";
    display: block;
    border-bottom: 1px solid hsla(0, 0%, 50%, .33);
}

a {
    color: #0c93e4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
}



body.dark-mode {
    background-color: #000;
    color: #fff;
}

body.dark-mode .center {
    background-color: #000;
}

body.dark-mode .center a {
    background: #fff;
    color: #000;
}

body.dark-mode .center svg {
    fill: #fff;
}

body.dark-mode .center svg:hover {
    fill: #eee;
}