/* 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: white;
  color: black;
  font-family: Verdana;
  text-align: center;
  margin: 0% 10%;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;         /* Adds 20px of space inside the edges */
  box-sizing: border-box;  /* Includes the padding in the 100% width calculation */
}

p{text-align: justify;
}

head {link rel="icon" type="image/png" sizes="32x32" href="/favicon.png">
}

h1 {
  text-align: center;
}

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

h5 {
  text-align: center;
}


h1 a { color: red; text-decoration: underline ; font-family: "Brush Script MT", "Segoe Script", cursive}
a{color:blue; text-decoration:underline;}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

iframe-container {}

.iframe-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9; /* Maintains 16:9 ratio */
  height: auto; /* Ensures height scales proportionally */
  max-width: 600px;

}

