@charset "utf-8";

.fixed-link { position: fixed; width: 100%; bottom: 0px; background: white; padding: 20px; left: 50%; transform: translate(-50%, 0px); }

.fixed-link h2 { font-size: 25px; text-align: center; margin-bottom: 10px; }

.fixed-link a {
  font-size: 25px; display: block; max-width: 700px; margin: 0px auto; border-radius: 4px; padding: 10px; background: rgb(1, 89, 153); color: rgb(255, 255, 255); text-align: center;
  @media (max-width: 768px) {
  margin: 0px 20px;
}
}

@media (prefers-color-scheme: dark) {
  .fixed-link { background: rgb(34, 48, 70); }
  .fixed-link h2 { color: rgb(255, 255, 255); }
}

body { position: relative; }
