@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap");

@font-face {
  font-family: "VGA";
  src: url("fonts/VGA.woff") format("woff");
}

@font-face {
    font-family: "Merriweather";
    src: url("fonts/Merriweather-Regular.ttf");
}

/* "TEALS" color theme by hep svadja */
/* Color Theme Swatches in Hex */
.Teals-1-hex {
  color: #0fc2c0;
}
.Teals-2-hex {
  color: #0caba8;
}
.Teals-3-hex {
  color: #008f8c;
}
.Teals-4-hex {
  color: #015958;
}
.Teals-5-hex {
  color: #023535;
}


/* "VEIOS" color theme by VINICIUS KAUAN SILVA SANTOS */
/* Color Theme Swatches in Hex */
.veios-1-hex {
  color: #0320ff;
}
.veios-2-hex {
  color: #0259e6;
}
.veios-3-hex {
  color: #0aa8fc;
}
.veios-4-hex {
  color: #02d3e6;
}
.veios-5-hex {
  color: #03ffd1;
}


/* retro hallway */

.retro-hallway-1 {
  color: #e8e9f3;
} /* ghost white */
.retro-hallway-2 {
  color: #4a7c59;
} /* amazon / Kate Pierson Campground Green */
.retro-hallway-3 {
  color: #2e4052;
} /* charcoal */
.retro-hallway-4 {
  color: #ffc857;
} /* maximum yellow red */
.retro-hallway-5 {
  color: #412234;
} /* dark purple */

.xiketic-1 {
  color: #14080e;
} /* xiketic */
.xiketic-2 {
  color: #454ade;
} /* iris */
.xiketic-3 {
  color: #b14aed;
} /* medium orchid */
.xiketic-4 {
  color: #42e2b8;
} /* medium aquamarine */
.xiketic-5 {
  color: #e8e9f3;
} /* ghost white */

*,
*::after,
*::before {
  box-sizing: border-box;
  --color1: #14080e;
  --color2: #454ade;
  --color3: #b14aed;
  --color4: #42e2b8;
  --color5: #e8e9f3;

  --blue1: rgba(3, 32, 255, 1);
  --blue2: rgba(2, 89, 230, 1);
}

:root {
    font-size: 16px;
}

body {
  background: var(--color5);
  color: var(--color1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, var(--blue1) 0%, var(--blue2) 100%);
  font-family: VGA, sans-serif;
  box-shadow: 0 2px 5px 0 var(--color1);
  width: 100%;
}

.site-name {
  font-size: 3rem;
  margin: 0.5rem;
  color: var(--color5);
  padding-left: 1rem;
}

.navbar-links ul {
  margin: 0;
  padding: 0;
  padding-right: 1rem;
  display: flex;
}

.navbar-links ul li {
  list-style: none;
}

.navbar-item {
  font-size: 2rem;
  font-style: italic;
  text-decoration: none;
  color: var(--color5);
  padding: 0.75rem;
}

.dropdown-container {
  position: relative;
}

.project-list {
  display: flex;
  position: absolute;
  top: 40px;
  left: 10px;
  background-color: var(--color5);
  width: 100%;
  border: 1px solid black;
  box-shadow: 0 2px 5px 0 var(--color1);
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
  pointer-events: none;
  z-index: 10;
}

.project-list li {
  padding: 7px;
}

.project {
  font-size: 1.5rem;
  color: var(--color1);
  text-decoration: none;
}

.showme {
  opacity: 1;
  pointer-events: auto;
}

main {
  padding-top: 15px;
  padding-bottom: 25px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  font-family: Merriweather, serif;
}
