a {
  color: white;
  font-weight: bold;
}

.langpick {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 12px;
}

abbr {
  font-weight: bold;
}

body {
  background-image: url(..//css/media/forest-landscape.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  color: white;
}

#text {
  max-width: 800px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  border-style: solid;
  border-radius: 6px;
  padding: 10px;
}

.backg {
  /* taken the https://css-pattern.com/*/
  /* background-color:rgba(155, 155, 255, 0.3); */
    --s: 10px; /* control the size*/
    --c1: rgba(155, 155, 155, 0.3);
    --c2: rgba(155, 155, 155, 0.6);

    --c:#0000 75%,var(--c1) 0;
    --g1:conic-gradient(at 78% 3%,var(--c));
    --g2:conic-gradient(at 3% 78%,var(--c));
    background:
      var(--g1),
      var(--g1) var(--s) var(--s),
      var(--g1) calc(2*var(--s)) calc(2*var(--s)),
      var(--g1) calc(3*var(--s)) calc(3*var(--s)),
      var(--g2) 0 calc(3*var(--s)),
      var(--g2) var(--s) 0,
      var(--g2) calc(2*var(--s)) var(--s),
      var(--g2) calc(3*var(--s)) calc(2*var(--s))
      var(--c2);
    background-size: calc(4*var(--s)) calc(4*var(--s));
}

hr {
  border-width: 4px 0 0 0;
  border-style: dashed;
  opacity: 0.8;
  color: white;
}

h1 {
  margin-top: 0px;
}

h2 {
  margin-bottom: 5px;
}

p {
  margin-top: 0px;
}

.flex {
  display: flex;
}

img {
  object-fit: none;
  object-position: top;
  margin: 0px 0px 0px 0px;
}

iframe {
  width: 100%;
  height: 260px;
  border: none;
}

.padd-left {
  padding-left: 10px;
}

.padd-right {
  padding-right: 10px;
}

/* https://stackoverflow.com/questions/54093850/use-css-to-punch-through-a-background
 trying to make the background of the image reset the background of the div under it, complex css shenaingans, warranted for the "website" image*/

.website {
  /* probably the mask method is the way but i need to know everything on the website first, right now i will commit to some other solution */
    background-image: url(..//css/media/forest-landscape-smaller.jpg);
    background-position: bottom;
    background-size: 335px, auto;
}

.blank {
  height: 500px;
}

@keyframes textColorChange {
    0% {color: #ffffff;}
    50% {color: #9B9B9B;}
    100% {color: #ffffff;}
}

.text-top {
  text-align: center;
  width: 100%;
  animation: textColorChange 2s infinite;
  margin-bottom: 5px;

}

.text-center {
  text-align: center;
}

.text-top-small {
  font-size: 15px;
  margin-top: 0px;
  animation-delay: 1s;
  font-weight: normal;
}


/*

/* experiments in creating an octagonal responsive sign, turned out ugly

:root {
  --sign-size: 200px;
}

.sign-side {
  clip-path: polygon(0 0, 40% 0, 100% 30%, 100% 70%, 40% 100%, 0 100%);
}

.sign-red {
    background-color: red;
    justify-content: left;
    align-items: center;
    display: flex;
    height: var(--sign-size);
    width: calc(var(--sign-size)/2);
}

.sign-white {
  background-color: white;
  justify-content: left;
  align-items: center;
  display: flex;
  height: calc(var(--sign-size) - calc(var(--sign-size)/10));
  width: calc(var(--sign-size)/2 - calc(var(--sign-size)/10/2));
}

.sign-inside {
  background-color: red;
  display: flex;
  width: calc(var(--sign-size)/2 - calc(var(--sign-size)/10));
  height: calc(var(--sign-size) - calc(var(--sign-size)/10*2));
}

#warning {
  height: var(--sign-size);
  width: calc(100% - var(--sign-size));
}

.height1 {
  height: var(--sign-size);
  background-color: red;
}


.height2 {
  height: calc(var(--sign-size) - calc(var(--sign-size)/10));
  background-color: white;
}

.height3 {
  height: calc(var(--sign-size) - calc(var(--sign-size)/10*2));
  background-color: red;
}

.sign-text {
  font-weight: bold;
  font-size: calc(var(--sign-size)/10);
  text-align: center;
}

.sign-center {
  display:flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#sign-left {
  rotate: 180deg;
}

.justify-sign {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;

} */

@media (max-device-width: 980px) and (orientation: portrait) {
.flex {
  font-size: 0.5em;
  }
}
