@media screen and (orientation: portrait) {
  body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3.0em;
    background-color: #000;
  }
  .topnav a {
    font-size: 1em;
  }
  input {
    font-size: 0.75em;
  }
  .guitar {
    font-size: .5em;
  }
  select.gallery-select, input.gallery-select {
    background-color: #112;
    color: #a4a611;
    border-style: solid;
    border-color: #225;
    border-radius: 5px;
    border-width: 2px;
    font-size: 1.5em;
    margin: 5px;
  }
  div.gallery-nav {
    font-size: 2.0em;
  }
  .search-results a {
    font-size: 2.5em;
  }
}
@media screen and (orientation: landscape) {
  body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2em;
    background-color: #000;
  }
  .topnav a {
    font-size: 1em;
  }
  input, .guitar {
    font-size: 0.7em;
  }
  select.gallery-select, input.gallery-select {
    background-color: #112;
    color: #a4a611;
    border-style: solid;
    border-color: #225;
    border-radius: 5px;
    border-width: 2px;
    font-size: 0.6em;
  }
  .search-results a {
    font-size: 1.2em;
  }
}

 
/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Style the topnav links */
div.topnav a {
  float: left;
  display: block;
  color: rgb(102, 143, 179);
  text-align: center;
  margin: 0px;
  padding: 5px 16px;
  text-decoration: none;
}

/* Change color on hover */
div.topnav a:hover {
  color: #aa0;
  background-color: #333;
}

/* Style the content */
.content {
  font-family: Arial, Helvetica, sans-serif;
  color: Yellow;
  /* font-size: 2vw; */
}

.content-center {
  display: flex;
  justify-content: center;
  margin: 2em;
}

.content-item {
  text-align: center;
}

.form-center {
  display: flex;
  flex-wrap: nowrap;
  /*justify-content: center;*/
  align-items: center;
  flex-direction: column;
  flex-shrink: 1;
  /*background-color: #555;*/
  /*margin: 10px;*/
}

.list a {
  font-size: 0.7em;
}

.form-center .form-wrapper {
  color: rgb(163, 163, 86);
  background-color: rgb(6, 46, 46);
  padding: 20px; 
  margin: 20px;
  border-radius: 15px;
}
.form-center input {
  color: yellow;
  background-color: #0a0228;
}
.form-center a:link, a:visited {
  color: rgb(114, 156, 218);
}

.form-wrapper .form-input {
  display: block;
  margin: 10px 0 0 20px;
}

.form-wrapper div a {
  display: block;
  margin: 10px 0 0 0;
  font-size: 30px;
}

#ckeckid {
  width: 1em;
  height: 1em;
}


.form-wrapper #checkid {
  display: block;
}

span.error {
  color: #FF0000;
  font-size: 0.5em;
}

.guitar-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.guitar {
  font-family: monospace;
  font-weight: bold;
  white-space: pre;
  /* margin: 0 1em 1em 1em; */
  padding: 0 1em 1em 1em;
  background-color: #fff;
  text-indent: 0px;
  /* font-stretch: 0.2; */

  /* text-align:justify; */
}

/* Gallery section */
div.gallery-container {
  padding: 10px;
  overflow: visible;
}

div.gallery-nav {
  color:#a4a611;
  padding: 20px 0px;
}

a.gallery-nav:link, a.gallery-nav:visited {
  color: #a4a611;
  text-align: center;
  text-decoration: none;
}
a.gallery-nav:hover {
  color: #fff;
}

div.gallery-assets {
  display: grid;
  grid-template-columns: min-content min-content min-content min-content;
  border-color: blue;
}            

div.gallery-item {
  background-color: #040404;
  padding: 10px;
  border: 2px solid #001;
  margin: auto;
  text-align: center;
  vertical-align: center;
  font-size: 0.5em;
  color: #aa4;
}

div.gallery-item:hover {
  padding: 10px;
  border: 2px solid #224;
  margin: auto;
}

div.gallery-item a {
  margin: auto;
  color: #0aa;
}

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  clear: left;
}

.search-container {
    position: relative;
    display: inline-block;
}
.search-results {
    position: absolute;
    background-color: #101010;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    display: none; /* Hidden by default */
    font-size: 0.5em;
}
.search-results a {
    padding: 5px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    color: #00ffff;
}
.search-results a:hover {
    background-color: #202060;
    color: #a0a020;
}
.info-data {
  border: 1px solid yellow;
  vertical-align: middle;
  padding: 10px;
  color: #aa4;
  font-size: .7em;
}
.info-data td {
  padding: 10px;
}