	:root{
  --button-color: #009B0B;
  --text-color: white;
  --back-button-background-color: #FF9100;
  --footer-background-color: #363636ef;
}
  
  ::-moz-selection { 
        background: #002c3d; 
        color: #ffffff; 
    }
	::selection { 
        background: #002c3d; 
        color: #fff; }
  ::-webkit-scrollbar{
    display: none;
  }
body{
    padding: 0;
    margin: 0;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    background-color: #005E94;
    overflow-x: hidden;
}

h1,h2,h3,p{
    font-family: sans-serif;
    color: white;
}
.back-button-container{
    margin-top: 15px;
    margin-left: 10px;
    transition: 0.5s !important;
}
.back-button{
    padding: 5px 15px;
    font-size: 25px;
    color: white;
    background-color: var(--back-button-background-color);
    border: none;
    border-radius: 20px;
    animation: slide-in-blurred-top 2s cubic-bezier(0.230, 1.000, 0.320, 1.000) both 1.5s;
    transition: 0.5s !important;
}
.back-button:hover{
  box-shadow: 0 0 10px 0px rgba(255, 255, 255, 0.616);
  cursor: pointer;
  transition: 0.5s !important;
}
@media screen and (max-width: 780px){
  .back-button-container{
    margin-top: 15px;
    margin-left: 10px;
}
.back-button{
    padding: 5px 15px;
    font-size: 15px; 
  }
  footer a {
    text-decoration: underline !important;
  }
}
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(54, 54, 54, 0.726);
  padding: 0px;
  margin-top: 20px;
  margin-bottom: 2px;
  color: white;
  border-top: 1px dotted white;
  border-bottom: 1px dotted white;
  font-family: sans-serif;
  position: absolute;
  width: 100%;
  bottom: 0;
  animation: slide-in-bottom 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 1.5s;
}
.footer-icon {
  margin-left: 5px !important;
}
footer a {
  color: white;
  transition: 0.5s;
  text-decoration: none;
}
footer a:hover {
  cursor: pointer;
  text-decoration: underline;
  font-size: 18px;
  transition: 0.5s;
}
.dialog-not-exist{
  background-color: var(--footer-background-color);
  border-radius: 50px;
  border: 1px solid white;
  animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.dialog-inhalt{
  display: flex;
  justify-content: space-around;
  text-align: center;
}
dialog p{
  color: rgb(255, 255, 255);
  font-family: sans-serif;
  line-height: 25px;
  font-size: 20px;
}
.dialog-close-button-container{
  display: flex;
  justify-content: center;
}
.dialog-close-button-container button:hover{
  transform: scale(1.05);
  box-shadow: 0 0 10px 0px rgba(255, 255, 255, 0.45);
}
.dialog-close-button-container button{
  padding: 8px 20px;
  font-size: 17px;
  border-radius: 10px;
  border: none;
  background-color: var(--button-color);
  color: white;
  transition: 0.5s;
}
.disabled-button{
  background-color: rgb(85, 85, 85) !important;
  cursor: not-allowed !important;
}
.disabled-button:hover{
  transform: none !important;
}
abbr{
  text-decoration: none;
}

