:root {
  --font-sans: "Segoe UI", "Arial", sans-serif;
  --primary: #4aa1ff;
  --text: #000000;
  --bg: #ffffff;
}

* {
  /* Changes the Font to Segoe UI */
  font-family: var(--font-sans);
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--bg);
}

img {
  -webkit-user-drag: none;
  user-select: none;
  border-radius: 8px;
}

a {
  /* Disables Dragging */
  -webkit-user-drag: none;
  /* Removes the Underline from Links */
  text-decoration: none;
  color: var(--text);
  transition: 0.3s;
}

a:hover {
  color: var(--primary);
  transition: 0.2s;
}

li span {
  /* No Idea what this does. Just don't remove it. */
  position: relative;
  left: 10px;
}

li::marker {
  /* Changes the Pointer in a List to lightblue */
  color: var(--primary);
}

.NotificationBar {
  /* Div Properties */
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #4aa1ff;
  margin-bottom: 15px;
  border-radius: 0 0 12px 12px;
  /* Display Settings: Navbar sticks to the Top */
  position: sticky;
  top: 0;
  z-index: 2;
}

.NotificationBar.hidden {
  /* Hides the Notification Bar */
  display: none;
}

#NotificationButton:hover {
  cursor: pointer;
  transition: 0.5s;
  background-color: #dbdada;
}

.NotificationBar p {
  background-color: var(--primary);
  color: var(--bg);
  margin-left: 15px;
  margin-right: auto;
}

#NotificationButton {
  height: 50%;
  margin-right: 15px;
  margin-left: auto;
  border-width: 1px;
  border-radius: 8px;
  transition: 0.5s;
}

/* #NotificationButton:hover handled above */

.Logo {
  /* Image Properties */
  width: 66px;
  height: 66px;
  padding-left: 20px;
}

.NavigationBar {
  /* Div Properties */
  height: auto;
  display: flex;
  flex-direction: row;
  margin-top: 15px;
}

.Links {
  /* Alignment Properties */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.LR-Margin {
  /* Margin Properties for Items */
  margin-left: 10px;
  margin-right: 10px;
}

footer {
  /* Div Properties  */
  padding: 10px;
  margin: 10px;
  /* Alignment Properties  */
  display: flex;
  justify-content: center;
  flex-direction: row;
}

hr {
  width: 60%;
}

.Icons {
  width: 35px;
  /* Spacing */
  margin-right: 5px;
}

#FooterLogoSection {
  /* Alignment Properties  */
  float: left;
}

#FooterLogo {
  /* Image Properties  */
  width: 66px;
  height: 66px;
  /* Alignment Properties  */
  float: left;
}

#FooterLinks {
  /* Text Propterties */
  font-weight: bold;
}

#FooterIcons {
  /* Alignment Properties  */
  display: flex;
  justify-content: center;
  align-items: center;
}

.Divider {
  width: 90%;
  height: 2px;
  border-top: 2px solid black;
}

.Disclaimer * {
  color: dimgray;
}
