body {
  background-color: #f3f4f6;
}

*,
:before,
:after {
  box-sizing:border-box;
  border-width:0;
  border-style:solid;
  border-color:#e5e7eb;
}

html,
:host {
  line-height:1.5;
  -webkit-text-size-adjust:100%;
  -moz-tab-size:4;
  -o-tab-size:4;
  tab-size:4;
  font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
  font-feature-settings:normal;
  font-variation-settings:normal;
  -webkit-tap-highlight-color:transparent
}

.info-box .content {
  padding: 20px;
  text-align: center;
}

.content h1 {
  font-size: 1.5rem;
}

.content img {
  margin-top: 10px;
  width: 100%;
  height: auto;
  border-radius: .5rem;
}

.logo {
  display: flex;
  width: 50%;
  justify-content: center;
  margin: 100px auto 40px;
}

.info-box {
  border-radius: .5rem;
  background-color: white;

  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
  border-bottom-width: 4px;
  border-color: rgb(209 213 219);
}

.container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  padding: 7px;
  display: flex;
  justify-content: space-between;
  font-size: small;
}

.footer div {
  display: flex;
  gap: 7px;
}

.footer a {
  color: #6b7280;
  text-decoration: none;
}


.footer a:hover {
  color: #457af7d8;
  text-decoration: underline;
}

.light {
  display: block;
}

.dark {
  display: none;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #111827;
  }
  .light {
    display: none;
  }
  .dark {
    display: block;
  }
  .info-box {
    background-color: #1f2937;
    color: white;
    border-color: black;
  }
}
