@font-face {
  font-size: 62.5%;
  font-family: "Silka Mono";
  font-weight: 400;
  src:    
    url("fonts/SilkaMono-Regular.otf") format("opentype") tech(color-COLRv1),
    url("fonts/SilkaMono-Regular.otf") format("opentype"),    
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

.visually-hidden,
.visually-hidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  color: transparent;
  animation: unset;
}

body {
  background-color: #545454;
  font-family: 'Poppins', sans-serif;
  padding: 0;
  margin: 0;
  line-height: 1.5;
}

a {
  transition-duration: 0.15s;
}

a:hover {
  color: #ffb800 !important;
}

a:focus-visible {
  color: #ffb800 !important;
}

.default-page-main {
  width: 100dvw;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  position: relative;
}

h1 {
  font-size: 35px;
  hyphens: auto;
}

h2 {
  font-size: 25px;
  hyphens: auto;
}

.content_wrap {
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  max-width: 100vw;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.webcard {
  width: 768px;
  width: 100%;
  height: 100%;  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.logobox {
  width: 350px;
  max-width: 35vw;
}

.contentbox {
  width: 100%;
  text-align: center;
  color: white;  
  font-size: 20px;
}

.contentbox a {
  display: inline-block;
  color: white;  
  text-decoration: none;
}

.contentbox a:hover { 
  text-decoration: underline;
}

.contentbox p {  
  margin: 10px 0;
}

.contentbox .upper {
  padding: 15px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contentbox .upper::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ffb800;
  border-radius: 5px;
}

.contentbox .upper::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ffb800;
  border-radius: 5px;
}

.contentbox .upper span {
  line-height: 1.2;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contentbox .upper span:first-child {
  color: #ffb800;
}

.contentbox .lower {
  margin-top: 20px;
}

.social_wrap {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-link {  
  width: 30px;
}

.social-link svg {  
  width: 100%;
}

.social-link svg * {
  transition-duration: 0.15s;
}

.social-link:hover svg * {
  fill: #ffb800 !important;
}

.social-link:focus-visible svg * {
  fill: #ffb800 !important;
}

/* QR CODE */
.qr-code {
  width: 100%;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-code .svgbox {
  width: 200px;
  max-width: 100%;
}

.qr-code .buttonbox {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-code .buttonbox small {
  font-style: italic;
  color: white;
  margin-top: 10px;
  text-wrap: balance;
  text-align: center;
  max-width: 100%;
}

.qr-code .buttonbox .button {
  text-align: center;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #ffb800;
  border: 2px solid #ffb800;
  color: white;
  border-radius: 10px;
  transition-duration: 0.15s;
}

.qr-code .buttonbox .button:hover {
  color: #ffb800;
  background-color: transparent;
}

.qr-code .buttonbox .button:focus-visible {
  color: #ffb800;
  background-color: transparent;
}

/* DISCLAIMER */
.disclaimer {
  width: 100%;
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.disclaimer a {
  color: white;
  text-decoration: none;
}

.disclaimer p {
  color: white;  
  padding-left: 10px;
  padding-right: 10px;
}

.disclaimer a:hover {  
  text-decoration: underline;
}

/* DATA */
.logowrap {

}

.logowrap .logobox {
  display: block;
  width: 350px;
  max-width: 35vw;
}

.data {
  width: 1100px;
  flex-grow: 1;  
  max-width: 80vw;
  hyphens: auto;
  word-wrap: break-word;
}

.imprint {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.data * {
  color: white;
}

.data h1 {
  color: #ffb800;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 18px;
  }

  .contentbox {
    font-size: 16px;
  }

  .contentbox .upper span {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .content_wrap {
    padding-left: 25px;
    padding-right: 25px;
  }

  .logobox {
    max-width: 50vw;
  }

  .contentbox .upper span {
    font-size: 20px;
  }

  .contentbox {
    font-size: 14px;
  }

  /* DATA */
  .logowrap .logobox {
    max-width: 50vw;
  }
}