body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  background-color: rgb(72, 72, 72);
}

a {
  text-decoration: none;
}

#main-header {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(0, 0, 0);
  padding: 0 5%;
}

#logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}

.menu-btn {
  width: 3rem;
  height: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  display: none;
}

.menu-btn span {
  width: 100%;
  height: 3px;
  background-color: white;
}

#main-header ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

#main-header li {
  margin: 0 1rem;
}

#main-header nav a {
  color: rgb(204, 204, 204);
  font-size: 1.25rem;
}

#main-header nav a:hover {
  color: rgb(255, 255, 0);
}

#side-drawer {
  width: 100%;
  height: 100%;
  background-color: rgb(29, 26, 27);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}

#side-drawer:target {
  display: block;
}

#side-drawer header {
  height: 5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 5%;
}

#side-drawer ul {
  list-style: none;
  margin: 0;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#side-drawer li {
  margin: 1rem 0;
}

#side-drawer a {
  color: rgb(253, 239, 213);
  font-size: 2rem;
}

main h1 {
  text-align: center;
  color: rgb(255, 255, 0);
  font-size: 3rem;
}

#latest-products {
  width: 90%;
  margin: 1rem auto;
}

#latest-products ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-item {
  background-color: rgb(255, 255, 0);
  border-radius: 6px;
  overflow: hidden;
}

.site-item img {
  height: 15rem;
  width: 100%;
  object-fit: cover;
}

.site-item-content {
  padding: 1rem;
  text-align: center;
}

.site-item h2 {
  margin: 0 0 1rem 0;
}

.btn {
  background-color: rgb(255, 0, 0);
  color: white;
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
}

.btn:hover {
  background-color: rgb(221, 134, 34);
}

@media (max-width: 48rem) {
  #main-header nav {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  main h1 {
    font-size: 1.5rem;
  }

  #latest-products ul {
    grid-template-columns: 100%;
  }
}

footer {
  height: 2 rem;
  display: flex;
  color: white;
  font-size: .9rem;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(0, 0, 0);
  padding: 1% 5%;
}

/* Issue Page */
.container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 75%; /* 4:3 Aspect Ratio */
  }
  
  .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  .issue-item {
    background-color: rgb(255, 255, 0);
    border-radius: 6px;
    overflow: hidden;
  }
  
  .issue-item img {
    height: 15rem;
    width: 100%;
    object-fit: cover;
  }
  
  .issue-item-content {
    padding: 1rem;
    text-align: center;
  }
  
  .issue-item h2 {
    margin: 0 0 0 0;
  }

  #latest-issues {
    width: 90%;
    margin: 1rem auto;
  }