body {
  background-color: black;
  color: white;
  font-family: 'Times New Roman', Times, serif;
  width: 1000px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
hr {
  border: 1px ridge #CCCCCC;
  margin: 10px 0px 10px 0px;
}
summary {
  background-color: #333333;
  padding: 5px;
  margin-top: 5px;
}
details p {
  padding: 5px !important;
}
footer {
  margin-top: 10px;
}


/* ========== ========== ========== ========== link styling ========== ========== ========== ========== */
/* unvisited link */
a:link {
  color: #0066FF;
}
/* visited link */
a:visited {
  color: #003366;
}
/* mouse over link */
a:hover {
  color: #00FF33;
}
/* selected link */
a:active {
  color: #0000FF;
}



/* ========== ========== ========== ========== custom site-wide classes ========== ========== ========== ========== */
.t_cent {
  text-align: center;
}
.img_cent {
  display: block;
  margin: auto;
}
.img_link:hover img {
    box-shadow: 0px 0px 3px 3px #999999;
}



/* ========== ========== ========== ========== index ========== =========== ========== ========== */
.enter_img {
  width: 70%;
  animation: fadeIn 3s ease-in-out;
  animation-delay: 1.5s;
  animation-fill-mode: backwards;
}

/* fade animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/* ========== ========== ========== ========== home.html ========== ========== ========== ========== */
.logo {
  display: block; 
  margin: auto; 
  width: 50%; 
  padding: 20px;
  filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.5))
          drop-shadow(3px -3px 3px rgba(0,0,0,0.5))
          drop-shadow(-3px 3px 3px rgba(0,0,0,0.5))
          drop-shadow(-3px -3px 3px rgba(0,0,0,0.5));
}
.logo_container {
  background-image: url(/stuff/close.png); 
  background-size: 100% 100%;
}



/* ========== ========== ========== ========== info.html ========== ========== ========== ========== */
.bio_image {
  width: 50%;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 3px ridge;
  box-shadow: 0px 0px 10px 2px #0066FF;
}
.justin { grid-area: justin; }
.tyler { grid-area: tyler; }
.elaine { grid-area: elaine; }
.bryan { grid-area: bryan; }
.grid_members {
  display: grid;
  grid-template:
    'justin tyler elaine bryan';
  padding: 10px;
}
.grid_members div {
	justify-self: center;
  text-align: center;
  padding-bottom: 10px;
  border: 3px ridge;
  box-shadow: 0px 0px 10px 2px #0066FF;
}
/* card link on click */
.member_link {
    display: block;
    text-decoration: none;
    color: #FFFFFF !important;
}
.member_link:hover div {
  box-shadow: 0px 0px 3px 3px #00FF33;
}



/* ========== ========== ========== ========== archive ========== ========== ========== ========== */
.flex_archive {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  margin-top: 10px;
  padding: 10px;
  /*border: 2px solid #0000FF;*/
}
/* card */
.flex_archive div {
  border: 3px ridge;
  box-shadow: 0px 0px 10px 2px #0066FF;
  width: 215px;
}
/* card image */
.flex_archive div img {
  width: 215px;
  object-fit: cover;
}
/* card text title line*/
.flex_archive div p b {
  text-decoration: underline #00FF33;
}
/* card text */
.flex_archive div p {
  padding: 0px 5px 5px 5px;
  line-height: 1.3;
}
/* card text year*/
.flex_archive div p span {
  color: #333333;
}



/* ========== ========== ========== ========== CSS reset ========== ========== ========== ========== */
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
}
body {
	line-height: 1;
}



/* ========== ========== ========== ========== small screen media query ========== ========== ========== ========== */
@media (max-width: 1000px) {
  body {
    width: 90%;
  }
  .grid_members {
    grid-gap: 10px;
    grid-template:
    'justin'
    'tyler'
    'elaine' 
    'bryan';
  }
}