/* Base responsive styles */
html {
  box-sizing: border-box;
  height: 100%;
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: inherit;
}
/* Ensure all elements are responsive */
* {
  box-sizing: border-box;
}

a {
  color: white;

}
p{
  color: white;

}


h1, h2, h3 {
  color: white;
}





/* Responsive iframes and videos */
iframe, video {
  max-width: 100%;
  height: auto;
}


@media (min-width: 43.75rem) {
  h1, h2, h3, h4, h5, h6 {
      margin-block: 0;
  }
}

a {
  color: white;
}
h3 {
  color: white;
}


/* Make sure images are responsive */
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}