@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=PT+Mono&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary:      #a48e29;
    --secondary:    #634A19;
    --light:        #d0d0df;
    --mid-light:    #b3b3b3;
    --mid-dark:     #454545;
    --dark:         #140f05;
}

* {
    font-family: 'Lexend Deca', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    font-size: 1.1rem;
    padding: 0;
    margin: 0;
    padding-top: 4em;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: .2s;
}

a:hover {
    color: var(--secondary);
}

h1, h2, h3, h4 {
    font-family: "Lexend Deca", sans-serif;
    letter-spacing: 4px;
    font-size: 2.2em;
    margin: 1em auto .5em auto;
}
h1 { text-align: center; color: var(--primary); }
h2 { font-size: 1.5em; }
h3 { font-size: 1.3em; }
h4 { font-size: 1.1em; }

.center {
    display: block;
    margin: 0 auto;
    text-align: center;
}

i.wi-mesh {
    display: flex;
    align-items: center;
}

.row {
    display: flex;
    justify-content: space-between;
}

.col {
    display: flex;
    flex-direction: column;
    flex: 1;
}


@media screen and (max-width: 800px) {
    body {
        font-size: 1rem;
    }
}