@charset "UTF-8";

@import "menu.css";
@import "logo.css";
@import "showtime.css";
@import "about.css";
@import "footer.css";
@import "video.css";
@import "music.css";
@import "pictures.css";
@import "contact.css";
@import "dirty.css";

html {
  background-color: lab(1 1 -10);
  height: 100%;
  /* Prevent zoom on iOS */
  touch-action: manipulation;
  /* Prevent iOS zoom */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: #FF00D0;
  margin: 0 auto;
  height: 100%;
  /* Prevent zoom on iOS */
  touch-action: manipulation;
  /* Prevent iOS zoom on scroll */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
}
p {
  margin: 0;
}
* {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  vertical-align: top;
}

.menu * {
  font-size: initial;
}

@media (min-width: 576px) {
  body {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 30px;  
  }
}
@media (min-width: 992px) {
  body {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 48px;
  }
}