/* fonts */

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Codystar:wght@300;400&display=swap');
/* fonts */

html {
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

hr {
    border-top-width: 1px
}

li {
    padding-top: 10px;
}

:root {
    --background-color: #0a0a0a;
    --text-color: #ffffff;
    --button-color: #b85cff;
    --secondary-color: #2f2a35;
    --heading-bg: #27202a;
    /* specific uses */
    --dark-secondary-color: #e8e8e8;
    --light-text-color: #000000;
    --dark-text-color: #ffffff;
    --light-secondary-color: #2e2e2e;
    /* specific uses */
}

body {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 2.5rem;
    overflow-y: scroll;
    font-family: 'Montserrat', sans-serif;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    color: var(--text-color);
    background-color: var(--background-color);
    background-size: 22px 22px;
    background-position: center;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
}

h1 {
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 900;
    line-height: 1.25;
    word-wrap: break-word;
}

h2, h3, h4, h5, h6 {
    color: var(--text-color);
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    word-wrap: break-word;
}

a {
    color: var(--button-color);
    text-decoration: none;
}

ul {
    margin: 0;
    word-wrap: break-word;
}

::-moz-selection {
    /* Code for Firefox */
    color: rgb(255, 255, 255);
    background: rgb(46, 46, 46);
}

::selection {
    color: rgb(255, 255, 255);
    background: rgb(46, 46, 46);
}

.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch-wrapper em {
    margin-left: 10px;
    font-size: 1rem;
}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
}