*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
}

/* #wrapper{
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
} */

#carousel{
  background-image: url('/assets/newspaper-white.jpeg');
  background-size: cover;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%
}

#carousel img{
  width: 150px;
   padding: 1rem;
}

#canvass-text{
  width: 60%;
  max-width: 400px;
  margin-top: 40px;
  margin-bottom: 20px;
}

#canvasses{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin: 20px 0;
}

.card{
  /* width: 28%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card .photo{
  width: 250px;
  height: 300px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}

.card:hover .photo,
.card:active .photo {
  filter: grayscale(0%);
}

.card .name{

  max-width: 250px;
  max-height: 80px;
  margin-top: -20px;
  transition: filter 0.2s ease;
  z-index: 10;

}

.card:hover .name,
.card:active .name {
  filter: brightness(0.6);
  z-index: 10;
}

.card .time{
  height: 40px;
  margin-top: 10px;
  transition: filter 0.2s ease;
}

/* .card:hover .time,
.card:active .time {
  filter: brightness(0.6);
} */

#header{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
}

#header img{
  margin-top: 20px;
  width: 90%;
  max-width: 700px;

}


#subtitle{
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 20px;
}

#s-plus{
  height: 30px;
  width: 30px;
}

#s-canvass-text{
  height: 40px;
  
}

#s-edr-text{
  height: 80px;
}

#canvassing-info{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.c-card{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 20px 0px;
  background-color: white;
  background-image: url('/assets/newspaper-white.jpeg');
  background-size: cover;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 1200px;
}




.c-photo{
  height: 100px;
  margin-right: 20px;
}

.c-name{
  height: 80px;
}

.c-time{
  height: 70px;
}



#shirt-promo{
  margin: 40px 0px;
  border-radius: 10px;
  background-image: url('/assets/newspaper-white.jpeg');
  background-size: cover;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  gap: 30px;
  padding: 0 0 20px;
}

#shirt-promo #shirt{
  height: 180px;
  transform: scale(1.2);
}

#shirt-promo #free-shirt-text{
  height: 100px;
}


#edr{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
  
}

#edr img{
  width: 90%;
  max-width: 700px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page{
  width: 100%;
  min-height: 100vh;
  padding-bottom: 20px;
  box-sizing: border-box;
  background-image: url('/assets/newspaper.jpeg');
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


/* .container {
  width: 100%;
  max-width: 32rem;
  padding-bottom: 2rem;
}

.flyer-wrapper {
  position: relative;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
}

.flyer-wrapper > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.hotspot .overlay {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  border: 4px solid transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.hotspot:hover .overlay {
  border-color: #f5a623;
  background-color: rgba(245, 166, 35, 0.2);
}

.hotspot .tooltip {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background-color: #f5a623;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 10;
}

.hotspot:hover .tooltip {
  opacity: 1;
}

.logo-link {
  position: absolute;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.hint {
  margin-top: 2.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.luma-embed {
  display: block;
  width: 100%;
  margin-top: 2rem;
  min-height: 650px;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(191, 203, 218, 0.53);
  background: #fff;
} */
iframe{
  height: 450px;
}

.luma-wrap{
  width: 70%;
  max-width: 900px;
  margin: 30px auto 40px;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 12px;
  background-color: #dcdad6;
  background-image: url('/assets/newspaper-white.jpeg');
  background-size: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.luma-wrap iframe{
  width: 100%;
  height: 620px;
  border: 0;
  border-radius: 8px;
  display: block;
}

p{
  font-family: Inter, system-ui, sans-serif;
}

.turn-white{
   filter: brightness(1) invert(0);
  transition: .2s;
}

.turn-white:hover{
   filter: brightness(0) invert(1);
  transition: .2s;
}

@media (max-width: 600px) {
nav{
  display: flex;
  flex-direction: column-reverse;
}

.turn-white{
   filter: brightness(0) invert(1);
  transition: .2s;
}

.turn-white:hover{
   filter: brightness(1) invert(0);
  transition: .2s;
}

.c-card{
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem
}

.luma-wrap{
  width: 92%;
  padding: 12px;
}

.luma-wrap iframe{
  height: 620px;
}

  
}

@media (min-width: 860px) {
  .luma-wrap iframe{
    height: 430px;
  }
}


