@charset "UTF-8";
/*
Theme Name: Niesetool Backup
Theme URI: https://niesetool.de/
Description: Niese Fahrzeugtool Backup Installer
Version: 1.0 (2024)
Author: Pixit Webdesign
Author URI: https://pixit-webdesign.de
*/

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

html {
  background-image: url("background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100dvh;
  overflow: hidden;
  margin: 0;
}

body {
  margin: 0;
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.notice {
  width: 600px;
  display: grid;
  gap: 1em;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 0.5em;
  padding: 3em 4em;
  justify-content: center;
  text-align: center;
  font-family: sans-serif;
}

.notice a {
  display: block;
  appearance: none;
  border: 0;

  padding: 0.75em 1em;
  border-radius: 5px;
  cursor: pointer;

  color: white;
  background-color: hsl(216 75% 51%);
  width: 100%;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 900;

  text-decoration: none;
  transition: all 0.2s ease;
}

.notice a:hover {
  background-color: hsl(216 75% 31%);
}

.notice span {
  color: hsl(0 0% 40%);
}

