.michroma-regular {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #acfcff;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  font-family: 'michroma', serif;
}

h1 {
  text-shadow: 2px 2px 6px turquoise;
}

h2, h3, h4{
  text-align: center;
}

.video-embed {
  position: relative;
  width: min(80%, 1000px);
  margin: 1.5rem auto;
  aspect-ratio: 16/9;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

p { 
    max-width: 55%;
    margin: 1em auto;
    text-align: center;
    line-height: 1.4;
    letter-spacing: normal;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #000000;
    padding: 35px;
    background-color: #fffdfa;
    opacity: 70%;
    box-shadow: #0014c4;
}

div {
    border: 1px solid #000000;
    padding: 25px;
    background-color: #ebffe6;
}

li{
    list-style-type:none;
    color:#0014c4;
    font-family:Georgia, serif;
    margin: 10px 0;
}

.comments {
    display: flex; /*I wanted to figure out how I would be able to make my comments appear on the same 
    line so I jumped ahead a bit and looked up how flex box's work*/
    justify-content: space-between;
    margin: 2em auto;
}

.comments p {
    width: 45%;
    text-align: left;
    padding: 15px;
    background: #fffdfa;
    border: 1px solid #000
}

.left {
  text-align: left;
}

.right {
    text-align: right;
}

.logo img {
    max-width: 120px;
    height: auto;
}

.photogrid { /*This is what I did instead of the gallery ID. I hope that's okay. I think it did the same thing unless I missed something in the lesson,
    I also ended up covering this on my own a little bit over the last lessons. I was kind of confused this time around working through my own code but
    I think I figured out where most of my issues were arising and worked through it.*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 3000px;
    margin: 0 auto;
    row-gap: 10px;
    column-gap: 10px;
}

.photogrid img{
    width:30%;
    height: auto;
}

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(.75);
  pointer-events: none;
}

.chapters {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.card {
    background-color:#ebffe6;
    border: 1px solid #000;
    padding: 25px;
    width: 250px;
    text-align: center;
}

form {
  background-color: #f9f7f1; 
  padding: 20px; 
  border-radius: 10px; 
  border: 1px solid #ccc; 
  width: 75%; 
  margin: 0 auto;
}

fieldset {
  border: none;
  padding: 0;
}

legend{
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

input[type="text"]
input[type="email"]
input[type="radio"]
input[type="checkbox"]

input[type="text"],
    input[type="email"],
    select {
      width: 100%;
      margin: 0 auto;
      padding: 8px;
      margin-top: 5px;
      font-size: 1rem;
      border: 1px solid #aaa;
      border-radius: 5px;
      box-sizing: border-box;
  }

button {
  margin-top: 20px;
  background-color: #5a3e36;
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #7a564f;
}

table {
  width: 78%; 
  margin: 0 auto;
  margin-bottom: 30px; 
  background-color: #fdfdfd;
  border: 1px solid #ccc; 
  border-radius: 4px;
}

th, td {
  padding: 12px; 
  border: 1px solid #ccc; 
  text-align: left; 
}

th {
  background-color: #f5f5f5; 
  font-weight: bold; 
  color: #5a3e36;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 1px;
  margin: 0;
}

nav li {
  display: inline;
}

/*Media Queries*/



@media (max-width: 600px) {
}

header, .chapters, footer {
    padding: 10px;
}