:root {
  --bg-sub: hsl(0, 0%, 20%);
  --bg-main: hsl(0, 0%, 5%);
  --text: white;
  --border: hsl(0, 0%, 12%);
  --border-light: hsl(0, 0%, 20%);
}

* {
  margin: 0;
  padding: 0;
}
html {
  font-family: "Roboto", sans-serif;
  background-color: var(--bg-sub);
  color: var(--text);
}
input:hover,
button:hover {
  cursor: url(./img/cursor.png), auto !important;
}

header {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-around;
  height: 50px;

  background-color: var(--bg-sub);
  padding: 5px;
}

body {
  min-height: calc(100vh - 60px);
  background-color: var(--bg-main);
}
footer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;

  background-color: var(--bg-sub);
  color: var(--text);
  font-size: 15px;
  margin: 0;
  padding: 20px 0 20px 0;
  width: 100%;
  height: 20px;

  position: relative;
  bottom: 0;
}
@media (min-width: 800px) {
  header {
    justify-content: baseline !important;
  }
  header > button {
    margin: 5px;
  }
  footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
  }
}
footer a {
  color: var(--text);
}

.main {
  padding: 5px;
  margin: 5px;
}

/*buttons
*/
button {
  height: 40px;
  margin: 5px;
  padding: 10px 10px;
  border-radius: 8px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-items: center;

  text-align: center;
  font-weight: 900;
  border: none;
  text-wrap: none;

  background-color: var(--bg-sub);
  color: var(--text);
  transition: 500ms;
}
button:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: 500ms;
}
@media (max-width: 400px) {
  button > span {
    display: none;
  }
}
.menuSymbol {
  height: 30px;
  width: 30px;

  position: relative;
  bottom: 5px;
}
.speichern {
  box-shadow: 0 0 5px inset green, 0 0 5px green;
}
.löschen {
  box-shadow: 0 0 5px inset red, 0 0 5px red;
}
.showSetup {
  box-shadow: 0 0 5px inset blue, 0 0 5px blue;
}
.closeSetup {
  color: green;
  background-color: hsl(0, 0%, 15%);
  box-shadow: 0 0 5px inset green, 0 0 5px green;
  margin: auto;
  margin-top: 20px;
  text-align: center;
}

dialog {
  background: linear-gradient(0deg, hsl(0, 0%, 10%), hsl(0, 0%, 15%));
  color: var(--text);
  padding: 15px;
  margin: auto;
  border-radius: 15px;
  align-items: center;
  align-content: center;
  text-align: center;

  border: none;
  box-shadow: inset 0 1px 2px hsl(0, 0%, 30%);
}

dialog::backdrop {
  background: black;
  opacity: 50%;
}
