@import url('https://fonts.googleapis.com/css2?family=Arimo');

body {
    font-family: 'Arimo', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
}

h2 {
    border-bottom: solid slategray;
}

.cv-header {
    background: linear-gradient(90deg, rgba(223, 223, 223, 1) 50%, transparent 100%);
}

.material-icons-outlined {
    font-size: 2.3rem;
    color: slategray;
    vertical-align: text-top;
}

.material-icons {
    font-size: 3rem;
    color: slategray;
    vertical-align: text-top;
}

.cv-hobbies .material-icons {
    font-size: 90px;
    color: darkgray;
}

@media (prefers-color-scheme: dark) {
    body {
        background: #2b2b2b;
        color: white;
    }

    .cv-header {
        color: black;
    }
}