@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Onest:wght@100..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import "responsive.css";
@import url('https://cdn.jsdelivr.net/npm/@catppuccin/palette/css/catppuccin.css');
@import "skills.css";
@import "hamburger.css";
@import "liquidglass.css";
@import "presetstyles.css";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--monospace);
  color: var(--text-darkmode);
  text-align: center;
}

h1#hero-typed {
  font-size: 5em !important;
}

p#hero-typed {
  font-size: 1.7em;
}

h1 {
  font-size: 4em;
  font-family: var(--heading);
  font-weight: 900;
}

p {
  font-size: 1.5em;
}

a {
  color: var(--ctp-macchiato-blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
nav {
  top: 0;
  position: fixed;
  width: 100%;
  z-index: 9;
}

nav ul div {
  display: flex;
  list-style-type: none;
  /* background-color: var(--ctp-macchiato-surface0); */
  /* background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid #b3b3b380; */
  padding: 10px;
  margin: 20px;
  border-radius: 51vh;
  /* box-shadow:
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #fff,
        0 0 42px #0fa,
        0 0 82px #0fa,
        0 0 92px #0fa,
        0 0 102px #0fa,
        0 0 151px #0fa; */
  box-shadow: 0px 0px 2px rgba(var(--ctp-macchiato-surface0) / 0.5),
    0px 0px 4px rgba(var(--ctp-macchiato-surface0) / 0.5), 0px 0px 8px rgba(var(--ctp-macchiato-surface0) / 0.5),
    0px 0px 16px rgba(var(--ctp-macchiato-surface0) / 0.5);
}

nav ul div:first-child {
  float: left;
}

nav ul div:last-child {
  float: right;
}

nav ul div:last-child li {
  padding: 0 15px;
}

nav ul div:first-child li {
  padding: 0 10px;
}

.section:not(.section:first-child) {
  padding: 0 10vw;
}

/* Section styles */

.section:nth-child(odd) {
  background-color: var(--bg-darkmode);
}

.section:nth-child(even) {
  background-color: var(--bg-darkmode);
}
