html {
  font-family: 'Courier New', Courier, monospace;
  overflow-x: hidden;
}

body {
  background-color: black;
  background-image: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Removed overflow-y: hidden to allow page to expand with iframe content */
  color: white;
}

#snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}

.snowflake {
  position: absolute;
  width: 10px;
  height: 10px;
  background: linear-gradient(white, white);
  /* Workaround for Chromium's selective color inversion */
  border-radius: 50%;
  filter: drop-shadow(0 0 10px white);
}

.btn-icon {
  padding: 8px 12px;
  border: none;
  background-color: transparent;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.btn.outlined {
  border: 2px solid #535353;
}

.btn {
  letter-spacing: .0892857143em; 
  font-weight: 500;
  text-transform: uppercase;
  font-size: smaller;
  background-color: black;
}

.btn:hover {
  box-shadow: 0 0 15px 8px rgba(151, 151, 151, 0.5);
}

.toggle-icon {
  position: absolute;
  top: 5px;
  right: 5px;
}

main {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
}

#content {
  width: 100%;
  max-width: 1200px;
  min-height: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background-color: rgba(40, 40, 40, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 0 15px 8px rgba(151, 151, 151, 0.5);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 110ms ease-in-out, transform 110ms ease-in-out;
  padding: 20px;
}

/* Make the Second Street embed container expand naturally */
#content > div {
  width: 100%;
  min-height: 500px;
}

#content.visible {
  opacity: 1;
  transform: scale(1);
}

.toggle-icon.btn {
  opacity: 0;
}

.toggle-icon.btn.visible {
  opacity: 1;
}

footer {
  padding: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  #content, main {
    padding: 10px;
    padding-top: 30px;
  }

}