/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  /*background-color: black;*/
  background-image: url('stone.png');
  background-size: 64px;
  image-rendering: pixelated;
  color: white;
  font-family: Arial;
  margin-left: 48px;
  margin-right: 48px;
}

.resizable-video {
  resize: both;
  overflow: auto;
  width: 720px;
  max-width: 100%;
/*  border: 5px solid #888; */
  min-height: 10%;
  max-height: 100%;

}

.resizable-video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.discord-widget {
  width: 100%;              /* Fill available horizontal space */
  max-width: 350px;         /* Optional: max width */
  aspect-ratio: 9 / 14;     /* Maintain aspect ratio */
  overflow: hidden;         /* Hide overflow if iframe exceeds container */
}

.discord-widget iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}