 @media screen and (max-width: 480px) {
      .desktopheader  {
        display:none !important;
    }

nav {
text-align: center;
}
    .links ul {
display: inline-block !important;
justify-content: center !important;
list-style: none;
padding:0; 
margin:0;
}

  iframe {
    width: 100%;
  }
    img {
    width: 100%;
  }
}

 @media screen and (min-width: 480px){
      .mobileheader  {
        display:none;
    }

 }

.links ul {
display: flex; justify-content: center;
gap:  16px;
list-style: none;
padding:0; 
margin:0;
}

.links a {
  display:block; 
  padding:12px 20px; 
  text-decoration:none;
}

 body {background-color: #0E0C0B;
margin: 0;
 }
  
  h1 {color: red;
      font-size: calc(15px + 0.390625vw);
      font-family: "Arial", "Helvetica";
  }
  p {color: white;

      font-size: calc(15px + 0.390625vw);
      font-family: "Lucida Console", "Courier New";
      text-align: center;
  }
  .bigger {
      font-size: calc(18px + 0.390625vw);
      font-family: "Lucida Console", "Courier New";
  }
  .center {
  margin: auto;
  max-width: 75ch;
  padding: 10px;
  text-align: center !important;
}
a:link {
  color: pink;
  background-color: transparent;
  text-decoration: none;
   font-size: calc(18px + 0.390625vw);
      font-family: "Lucida Console", "Courier New";
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
   font-size: calc(18px + 0.390625vw);
      font-family: "Lucida Console", "Courier New";
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
   font-size: calc(18px + 0.390625vw);
      font-family: "Lucida Console", "Courier New";
}

a:active {
  color: red;
  background-color: transparent;
  text-decoration: underline;
   font-size: calc(18px + 0.390625vw);
      font-family: "Lucida Console", "Courier New";
}

.container {
  position: relative;
  overflow: hidden;
  width: 75%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}