@font-face{
  src: url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,500;0,600;0,700;1,100;1,200;1,300;1,500;1,600;1,700&family=Source+Code+Pro:ital@0;1&display=swap, https://fonts.googleapis.com/css2?family=Borel&display=swap");

} 

.borel-regular {
  font-family: "Borel", cursive;
  font-weight: 400;
  font-style: normal;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* The following is all reset from Glitch */
/* default to border-box */
html {
  box-sizing: border-box;
  font-size: 16px;
  background: rgb(245, 229, 255);
  background-image: url("assets/images/LA%20background.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* adjust typography defaults */
body {
  font-family: "Source Code Pro", monospace;
  font-weight: 400;
  min-height: 100%;
}

/* images and videos max out at full width */
img,
video {
  height: auto;
  max-width: 100%;
}

/* Theme switcher */
/* Values for light and dark */

:root {
    --header-light: rgb(95, 0, 0);
    --body-light: rgb(45, 45, 65);
    --bg-light: rgb(225, 225, 225);
    --track-light: rgb(205 195 165 /0.8);
    --highlight-light: rgb(155, 50, 0);

    --header-dark: rgb(250, 180, 120);
    --body-dark: rgb(225, 225, 225);
    --bg-dark: rgb(45, 45, 65);
    --track-dark: rgb(105 85 55 /0.6);
    --highlight-dark: rgb(225, 120, 100);
}

/* Automatic Light Mode; Light Mode Override */

html,
[data-theme="light"] {
    --header: var(--header-light);
    --body: var(--body-light);
    --bg: var(--bg-light);
    --theme-switch-track: var(--track-light);
    --theme-switch-highlight: var(--highlight-light);
}

/* Dark Mode Override */

[data-theme="dark"] {
    --header: var(--header-dark);
    --body: var(--body-dark);
    --bg: var(--bg-dark);
    --theme-switch-track: var(--track-dark);
    --theme-switch-highlight: var(--highlight-dark);
}

/* Automatic Dark Mode */

@media (prefers-color-scheme: dark) {
    html:not([data-theme="light"]) {
        --header: var(--header-dark);
        --body: var(--body-dark);
        --bg: var(--bg-dark);
        --theme-switch-track: var(--track-dark);
        --theme-switch-highlight: var(--highlight-dark);
    }
}

/* This is really where my CSS starts lol */

h1 {
  font-family: "Borel", "Times New Roman", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 4em;
  line-height: 80%;
  color: #9c38da;
  /* color: var(--header); */
  margin: 0;
}

h2 {
  font-size: 1rem;
  line-height: 130%;
  color: #a070bd;
  font-weight: normal;
  margin: 1em 0 3em 0;
  text-shadow: 1px 1px 2px #fff;

}

h3 {
  font-family: "Source Code Pro", monospace;
  color: #e2c7f2;
  font-size: 1rem;
  line-height: 125%;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2c7f2;
  margin: 0;
}

.navigation {
  font-weight: 300;
  margin: 2rem 0 0 0;
}

.container {
  margin: 2rem auto;
  padding: 4rem 2rem 2rem 2rem;
  min-width: 375px;
  max-width: 400px;
  border-radius: 16px;
}

p {
  font-size: 1.5rem;
  line-height: 125%;
  color: #a070bd;
  margin-top: 0.5rem;
}

a {
  color: #a070bd;
  text-decoration: none;
  border-bottom: 1px dotted #a070bd;
}

a:hover {
  color: #9c38da;
  background: rgb(245, 229, 255);
  background: radial-gradient(
    circle,
    rgba(245, 229, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-bottom: 1px solid #e2c7f2;
}



