body {
  padding: calc(var(--vh, 1vh) * 5);
  margin: 0;
  font-family: 'DIN';
  background: #E2E1CF;
  line-height: 1.5;
}

main {
  padding: 1em;
}


a {
  /* text-decoration: none !important; */
  color: black;
}

#container {
  width: calc(100vw - 10 * var(--vh, 1vh));
  height: calc(100vh - 12.5 * var(--vh, 1vh));
  position: relative;
}

header {
  position: relative;
  min-height: calc(var(--vh, 1vh) * 5);
}

header h1 {
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

h1 a, nav a {
  text-decoration: none;
}

.green-bar {
  margin-top: 0.5em;
  margin-bottom: 3em;
  border-top: calc(1.5 * var(--vh, 1vh)) solid #38d430;
}

nav {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-bottom: 0.5em;
}

nav a {
  margin-left: 1em;
}

nav a:hover .circle {
  background: black; 
}

.circle {
  background: none;
  border: 1px solid black;
  border-radius: 50%;
  width: 0.5em;
  height: 0.5em;
  margin-bottom: 0.05em;
  display: inline-block;
}

hr {
  border-top: 1px solid black;
}

h1 {
  font-size: 40px;
  text-transform: uppercase;
  padding: calc(1 * var(--vh, 1vh)) 0;
  margin: 0;
}


p {
  padding: calc(1 * var(--vh, 1vh)) 0;

}


.outlined {
  border-top: calc(2 * var(--vh, 1vh)) solid #38d430;
  border-right: calc(0.5 * var(--vh, 1vh)) solid #38d430;
  border-bottom: calc(0.5 * var(--vh, 1vh)) solid #38d430;
  width: 100%;
  height: 100%;
}

#samples {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto auto;
  grid-gap: 2vw;
}

.sample {
  border-top: 1px solid black;
  margin: 0;
  padding: 0;
  padding-bottom: 100%;
  width: 100%; 
  height: 0;
  display: block;
  cursor: pointer;
  text-align: center;
  position: relative;
}


.sample-cover {
  display: none;
  border-top: 1px solid #38d430;
  background: #38d430;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -1px;
  left: 0;
}

.sample-cover a {
  color: black;
  width: 80%;
  display: block;
  margin: 0 auto;
  text-decoration: none;
  margin-top: 38%;
}

.sample:hover .sample-cover {
  display: block;
}

.vial {
  width: 10%;
  margin-top: 10%;
}

.label {
  background: #38d430;
  text-align: center;
  width: 100%;
  padding: 4px 0 2px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 0.8vw;
}

#focus {
  width: 100%;
}

#focus img {
  width: 5%;
  display: block;
  margin: 0 auto;
}

.button {
  border: 1px solid #38d430;
  background: none;
  padding-top: calc(1.2 * var(--vh, 1vh));
  padding-bottom: calc(1 * var(--vh, 1vh));
  display: inline-block;
  width: 45%;
  cursor: pointer;
  font-family: 'DIN';
  color: black;
  text-decoration: none;
  font-size: 1em;
  text-align: center;
}

.button:hover {
  background: #38d430;
}

.bottom-nav {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.bottom-button {
  border-left: calc(0.5 * var(--vh, 1vh)) solid #38d430;
  display: inline-block;
  flex:0 1 calc(50% - 10px);
  text-align: center;
  padding-top: 1em;
  margin-bottom: -1px;
}

.bottom-button-notch {
  width: 50%;
  height: 1em;
  border-right: calc(0.5 * var(--vh, 1vh)) solid #38d430;
  margin-top: 0.5em;
}

.left {
  width: 60%;
  display: inline-block;
}

.right {
  width: 40%;
  display: inline-block;
}


@font-face {
  font-family: 'NimbusSanL';
  src:  url('nimbus-sans/NimbusSanL-Reg.woff2') format('woff2'),
        url('nimbus-sans/NimbusSanL-Reg.woff') format('woff');
}

@font-face {
  font-family: 'DIN';
  src:  url('DIN/DIN.woff2') format('woff2'),
        url('DIN/DIN.woff') format('woff');
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important; /* 1 */
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important; /* 2 */
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; /* 3 */
}