body{
    background: conic-gradient(rgb(0, 0, 0) 0%, rgb(51, 0, 0) 20%, rgba(120,0,0,1) 30%, rgb(51, 0, 0) 50%, rgba(120,0,0,1) 70%, rgb(51, 0, 0) 80%, rgb(0, 0, 0) 100%);
    height: 100%;
}
*{
    color: aliceblue;
}

.button_Darkmode_OFF{
    opacity: 0;
    position: fixed;
  }
  .button_Pridemode_OFF{
    opacity: 0;
    position: fixed;
  }
  .button_pusch{
    position: static;
  }
  
  .dark-mode {
    background: conic-gradient(rgb(255, 255, 255) 0%, rgb(255, 129, 129) 20%, rgb(253, 50, 50) 30%, rgb(255, 137, 137) 50%, rgb(255, 53, 53) 70%, rgb(252, 118, 118) 80%, rgb(255, 255, 255) 100%);
  }
  .pride-mode {
    background: conic-gradient(rgb(255, 0, 0) 0%, rgb(255, 111, 0) 20%, rgb(255, 187, 0) 30%, rgb(2, 196, 28) 50%,
   rgb(0, 183, 255) 70%, rgb(17, 0, 255) 80%, rgb(255, 0, 0) 100%);
  }
  button{
    background-color:transparent;
    border-width: 0px;
    cursor:url("img/cursor.png"), auto;
    color: red;
    font-size: 3vw;
  }
  
  .modebuttons{
    position:fixed;
    top:50px;
    right:0%;
  }



h3{
    line-height: 130%;
    font-size: 2.5vh;
}
h3.dark-mode{
    color: black;
    line-height: 130%;
    font-size: 2.5vh;
}
h3.pride-mode{
    color:darkorange;
    line-height: 130%;
    font-size: 2.5vh;
}

h4{
    color: aliceblue;
}
h4.dark-mode{
    color: black;
}
h4.pride-mode{
    color:darkorange;
}

.main{
    display: flex;
    flex-direction: row;
    height: 100%;
}
.content{
    width: 85%;
    height: 100%;
    background-color: rgba(10, 40, 40, 0.5);
    padding: 3%;
    padding-top: 0%;
}
.container{
    background-color: rgba(0, 0, 0, 0.049);
    margin-right: 10%;
    display: flex;
    flex-direction: row;
    width: 100%;
}
.item{
    margin-right: 30px;
    width: 100%;
    font-size: 2vw;
}
/*
button{
    background-color: green;
    border-width: 0px;
    border-radius: 50px;
    font-size: 3vw;
    width: 50%;
}*/
input{
    background-color: rgba(0, 0, 0, 0.2);
    border-width: 0px;
    border-radius: 10px;
    font-size: 3vw;
    margin-bottom: 1%;
    width: 50%;
    height: 25%;
}
.input2{
    line-break:strict;
}

.warning{
    font-size: 3vw;
    width: 50%;
    margin-left: 25%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.268);
    border-width: 5px;
    border-style: solid;
    border-radius: 50px;
    color: rgb(1, 253, 1);
    animation:abtauchen 6s;
    opacity: 0;
    text-align: center;
    position: fixed;
}
@keyframes abtauchen {
    0%{
        opacity:1;
        position: static;
    }
    100%{
        opacity:0;
        position: static;
    }
}

@media (max-width: 1092px){
    body{
        height:unset;
    }
    h1{
        font-size: 8vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    h2{
        font-size: 4vw;
    }
    h3{
        font-size: 1.3vh;
    }
    button, input{
        font-size: 6vw;
        width: 90%;
    }
    .main{
        flex-direction: column;
    }
    .content{
        width: 100%;
    }
    .Logo{
        display: inline;
        align-self: baseline;
    }
}
a{
    text-decoration: none;
    color: red;
}
