

body {
    /*background-color: #D0F0C0;*/
    /*background-image: url('../img/Froh%20Force.png');*/
    width:100%;
    /*background-color: #ACE1AF;*/
    /*background-color: #77DD77;*/
    /*background-color: #98FB98;*/
    opacity: 0;
    transition: opacity 2s ease;
    
}

.visible {
    opacity: 1;
    background-color: #D0F0C0;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navigationsbar für alle Seiten */

.Navigation {
    background-color: white;
    border-radius: none;
    font-size: 1.2rem;
    font-family: Lexend;
    height: 135px;
    width: 100%;
    padding-left: 20px;
    padding-right:20px;
    position: sticky;
    z-index: 1000;
    top: 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    
    
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height:100%;
    width: 90%;
    margin-top: 0;
    
}

.navbar ul {
    display: flex;
}

.Navigation .navbar {
    justify-content: space-between;
}

.navbar ul li {
  list-style-type: none;
    border-bottom: none;
    padding: 20px;
    margin: 0 10px;
}


.navbar a {
    color: grey;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}


.navbar a:hover{
    color: black;
    transition: 0.3s ease;
}

/* Logo und Animation--------------------------------------------------------------------- */

.Logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    border-radius: 90px;
    padding: 1px;
}


.LogoBackground {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 90px;
    animation: rotateBackground 40s linear infinite;
    
}


.Logoicon {
    position: absolute;
    display: inline-block;
    width: 77px;
    height: 77px;
    
}

.Logoicon:hover {
    animation: rotateImage 1s ease-in-out infinite;
    transition: 1s linear;
    cursor: pointer;
    
}




@keyframes rotateImage {
    0% { transform: rotate(0deg); } 
    50% { transform: rotate(180deg) scale(1.05);}
    100% {transform: rotate(360deg);}
}

@keyframes rotateBackground {
    from {transform: rotate(0deg); }
    to {transform: rotate(-360deg); }
}










/* Textdesign --------------------------------------------------------------------------------- */

.paragraph {
    font-family: Lexend;
    margin: 10px;
    padding:20px;
    /*background-color: white;*/
    text-decoration-color: black;
    margin-left:40px;
    margin-right:40px;
    font-size: 1rem;
    font-display: block;
    
}

.headerb {
    font-family: Lexend;
    font-size: 2rem;
    font-weight: bold;
    
    }

.headerw{
    font-family:Lexend;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    
}

.Textbox{
    margin: 40px 0;
    padding: 60px;
    background-color: white;
    font-family: lexend;
    font-size: 1.2rem;
    line-height: 1.5;
    padding-bottom: 100px;
    
}

.Header{
    font-size: 70px;
    
   
}





/* Lichtschalter (aus w3schools ûbernommen und etwas dem eigenen Design angepasst---------------------------------------------------------------------------- */


 
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}


.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}


.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  -webkit-transition: .5s;
  transition: .5s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .5s;
  transition: .5s;
}

input:checked + .slider {
  background-color: #27352A;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
} 


/* Footer--------------------------------------------------------------------------------------- */


.footer {
    background-color: white;
    padding: 50 px;
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    
    
}

.footer ul li {
    padding: 15px;
    margin: 0 10px;
    list-style: none;
    border-bottom: none;
    
    
}

.footer a {
    font-family: lexend;
    /*font-weight: bold;*/
    text-decoration: none;
    font-size: 0.9rem;
    color: grey;
    
}

.footer a:hover{
    color: black;
    transition: 0.3s ease;
}

.footertext {
    font-family: lexend;
    color: gray;
    font-size: 0.9rem;
    margin: 10px;
    padding:20px;
    
}

#frogger {
    display: block
    height: auto;
    width: 20%;
}





/* Nachtmodus ---------------------------------------------------------------------- */


.dark-transition {
    transition: background-color 0.5s ease, color 0.5s ease;
}

.dark-mode {
    background-color: #27352A;
    color: white;
    
}

.footer-dark-mode{
    background-color: black;
    
}

.footer-dark-mode a:hover{
    color: white;
    transition: 0.3s ease;
}



.navbar-dark-mode {
    background-color: black;
    
    
}

.navbar-dark-mode a:hover{
    color: white;
    transition: 0.3s ease;
}

.Textbox-dark-mode {
    background-color: black;
    
}

.formular-dark-mode { 
    background-color: black;
    
    color: white;
}