/* GRID */
.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    padding: 1rem;
}

/* Flex Item Widths */
.flex-10 {
    flex-basis: 10%;
}

.flex-25 {
    flex-basis: 25%;
}

.flex-50 {
    flex-basis: 50%;
}

.flex-100 {
    flex-basis: 100%;
}

/* Flex Item */
.flex-item {
    flex-grow: 0;
    flex-shrink: 1;
    align-self: auto;
}

.flex {
    padding-bottom: 1rem;
}
/* GRID end */

/* FONT */
body {
    font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"DM Sans","Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
}

h1, h2, h3, h4 {
    font-family: Montserrat,sans-serif
}
/* FONT end */

/* TYPOGRAPHY */
p, h1, h2, h3, h4 {
    margin-bottom: 1.25rem;
}

h1 {
    font-size: 2rem;
    font-weight: 900;
}

h2, h3, h4 {
    font-size: 1.5rem;
    font-weight: bold;
}
/* TYPOGRAPHY end */

/* COLOR */
:root {
  --primary-color: #4285f4;
  --primary-light-color: #66b1ff;
  --primary-dark-color: #005cb2;
  --secondary-color: #db4437;
  --secondary-light-color: #ff6e5e;
  --secondary-dark-color: #9b0000;
  --background-color: #000;
  --text-color: #fff;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
}

a {
  color: var(--primary-color);
}

a:hover {
  color: var(--secondary-color);
}
/* COLOR end */


/* EFFECTS */
.fadeout {
  background: -webkit-linear-gradient(top left, #fff, #222);
  background: -moz-linear-gradient(top left, #fff, #222);
  background: linear-gradient(to bottom right, #fff, #222);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
/* EFFECTS end */

pre, code {
    overflow: auto;
}
