/* If the browser window is smaller than 600px, make the columns stack on top of each other */
@media only screen and (max-width: 600px) {
  /* main styles */
  html { height: 100vh; background: #000; display: flex; }
  body { width: 100%; margin: 0; font-family: overlock; place-items: center; background-color: transparent;padding-bottom: 10%;}

  .navbar li {
    font-size: 10px;
    padding: 5px;
  }

  .col {
    display: block;
    width: 100%;
  }

  .gradient-box {
    max-width: 90%;
    height: 90vh;
    margin: 5px auto;
    padding-left: 2px;
    padding-right: 2px;
  }

  .container {
    max-height: 100%;
    margin: 5px auto;
  }

  .container p {
    font-size: 1rem;
  }
  
  .box {
    width: 100%;
    height: 50vh;
    padding: 5px;
  }

  .iframe {
    height: 30%;
  }

  .footer p,
  a {
    max-height: 8vh;
    font-size: 10px;
    line-height: 10px;
  }

  /* text styles */
  h1 {
    font-size: 18px;
  }

  h2 {
    font-size: 15px;
  }

  h3 {
    font-size: 1rem;
  }

  h4 {
    font-size: 1rem;
    text-align: center;
    text-justify: inter-word;
  }
  
  h5 {
    font-size: 1rem;
    text-align: center;
    text-justify: inter-word;
  }

  h6 {
    font-size: 12px;
  }

  /* images styles */
  .img-wrap .caption {
    font-size: 10px;
  }

  .imgcaption {
    font-size: 10px;
  }
  
ol {
  font-family: overlock;
  font-size: 1rem;
  width: 85%;
  margin: 1rem auto;
}
  
ol li {
  font-family: overlock;
  font-size: 1rem;
}  
  
ul li {
  line-height: 10px;
}  
  
a.button {
  font-size: 10px;
  }

  /* form styles */
  fieldset {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    border: 1px solid seagreen;
    border-radius: 15px;
    margin: 0 auto 1.5rem;
    padding: 0 5px;
  }

  legend {
    font-size: 1.5rem;
  }

  fieldset p {
    padding: 0 2px;
    font-size: 1rem;
    text-align: justify;
    text-justify: inter-word;
  }

/* tables */
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-top: 3px solid darkgreen;
    border-radius: 15px;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    width: 25%;
    font-size: .8em;
    text-align: right;
    border-bottom: hidden;
    vertical-align: text-top;  
  }
  
  .td {
    width: 75%;
    padding: .625em;
    font-size: .8em;
    font-family: overlock;
    text-align: right;
    color: darkseagreen; 
  }
  
  td a {
  font-family: overlock;
  font-size: .8em;
  }
 
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
}
