@font-face {
  font-family: 'Inter-medium';
  src: url("/Inter-Medium.otf") format("opentype");
}

@font-face {
  font-family: 'Inter-medium-italic';
  src: url("/Inter-MediumItalic.otf") format("opentype");
}

@font-face {
  font-family: "Geist Mono Medium", monospace;
  src: url("/GeistMono-Medium.ttf") format("opentype");
}

@font-face {
  font-family: "Geist Mono Bold", monospace;
  src: url("/GeistMono-Bold.ttf") format("opentype");
}

/*
@font-face {
  font-family: 'Noto';
  src: url("/NotoEmoji-Regular.ttf") format("opentype");
}
*/

html {
  background-color: rgb(255, 255, 255);
  cursor: cell;
}

body {
  font-family: "Geist Mono", monospace;
  margin: 0;
  padding: 0;
  background-color: grayscale;
}

  h1 {
    margin: 1em;
    font-size: 1.5em;
    font-weight: 300;
    color: rgb(0, 0, 0);
  }

  header {
    display: grid;
    border: none;
    font-family: "Geist Mono", monospace;
    font-size:1em;
  }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  background: #eee;
  padding: 20px;
}

.item {
  background: #ddd;
  padding: 20px;
}

.visible {
  display: block;
}

@keyframes fadeIn {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

}

/*
li {
  list-style: none;
  text-transform: uppercase;
}

header:hover {
  background-color: rgb(107, 182, 169);
}

nav {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  margin: 20px;
}

li:first-child {
  font-weight: 600;
}

a {
  color: black;
  text-decoration: none;
  padding: 10px;
}

a:hover {
  color: black;
}


.flexbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  border-bottom: 1px solid black;
}

.filters-inline {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
  font-family: "Geist Mono", monospace;
  font-size: 25px;
  text-transform:uppercase;
}

.filters-inline li {
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid black;
  transition: background 0.3s, color 0.3s;
}

.filters-inline li:hover,
.filters-inline li.active {
  background-color: black;
  color: white;
}

img {
  width: 100%;
}

.image-hover {
  position: relative;
  height: auto;
}

.image-hover img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease-in-out;
}

.image-hover .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.image-hover:hover .hover-img {
  opacity: 1;
}

.image-hover:hover .default-img {
  opacity: 0;
}

svg {
  width: 100%;
  margin-top: 1em;
}

.steve {
  margin: 0.5em;
}

figcaption {
  font-family: "Geist Mono", monospace;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  background: white;
  margin: 0;
  padding: 0.5em;
  tab-size: 5;
  font-size: 1em;
}


h1 {
  line-height: 1.4;
  color: rgb(0, 0, 0);
  padding: 20px;
  font-size: 2vw;
}

h3 {
  margin-top: 0;
}

u {
  text-shadow: 1px 1px 2px rgb(128, 128, 128), 0 0 1em rgb(46, 46, 46);
}


a {
  text-decoration: none;
}


p {
  bottom: 0;
  margin: 1em;
  line-height: 1.5;
}

footer {
  font-family: "Geist Mono Medium", monospace;
  bottom: 0;
  background-color: rgb(0, 0, 0);
  margin: 0.5em;
  padding: 10px;
  color: white;
}

  nav {
    display: inline;
    align-items: center;
    margin: 20px;
    grid-auto-flow: column;
  }

  .description {
    position: relative;
  }


  .flexbox-column {
    width: 100%;
    position: relative;
  }


  h1 {
    margin: 1em;
    font-size: 1.5em;
    font-weight: 300;
    color: rgb(0, 0, 0);
  }

  .who {
    position: relative;
    display: inline-flex;
    max-width: 100%;
    top: 0px;
  }

  svg {
    display: none;
    margin: 20px;
    width: 40%;
  }

  .steve {
    text-align: center;
  }

  #projects {
    max-width: 100%;
    border: 2px solid;
    margin: 1em;
    background-color: white;

  }
  */
