@font-face {
            font-family: 'Poppin';
            src: url('https://withbirds.neocities.org/fonts/Poppin-Regular.woff') format('woff');
        }
        h1 {
            font-family: 'Poppin';
        }
        
.oops {
	color: rgb(126, 97, 219)
}

.all {
	color:#b854bc
}
.cereal {
	color: #5690ff
}

body {
  margin: 0;
}

header {
font-family: 'Poppin';
font-size: 2em;
margin-bottom: 1rem;
text-align: center;
text-shadow:
  1px 1px 2px red,
  0 0 1em blue,
  0 0 0.2em blue;
}

.grid {
  margin-top: -17rem;
  display: grid;
  grid-template-columns: repeat(3, 200px);
  justify-content: center;
  align-content: center;
  grid-gap: 10px;
  height: 100vh;
}
.grid img:hover {
  cursor: zoom-in;
}
.grid img {
  width: 200px;
  height: auto;
  cursor: pointer;
  border: 2px solid black;
}

#lightbox {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .8);
  display: none;
}

#lightbox.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  padding: 4px;
  background-color: black;
  border: 2px solid white;
}

