@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@700&family=Archivo&family=Borel&family=DynaPuff&family=Kanit:wght@500&family=Sedgwick+Ave+Display&family=Teko&display=swap');
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Archivo', sans-serif;
}
:root{
    --bg-color:#121212;
    --second-bg-color:#232323;
    --text-color-hover:rgb(255, 153, 35);
    --text-color:#fff;
    --main-color:#0ef;
    --section-font-size-h1-dest:5.6rem;
    --section-font-size-h3-dest:3.2rem;
}
html{
    font-size: 62.5%;
    overflow-x:hidden;
}
body{
    padding: 20px;
    background:var(--bg-color);
    color:var(--text-color);
}
footer{
    display: flex;
    justify-content: center;
}
footer h3{
    font-size: 1.5rem;
}
/*#section                    section                    */
section {
    min-height: 70vh;
    padding: 10rem 9% 2rem;
    border-radius:10px;
    margin-bottom: 2rem;
}
/*#header                    header                    */
.header{
    border-radius:10px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 6%;
    background: var(--second-bg-color);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    margin-bottom: 2rem;
}
/*#logo                    logo                    */
.logo{
    margin-right: 1rem;
    display: flex;
    align-items: center;
    flex-wrap:nowrap;
    color: var(--text-color);
    font-weight: 600;
    cursor: default;
}
.logo a{
    margin-left: 1rem;
    color:#fff;
    font-size: 2.5rem;
}
.logo img{
    background-color:rgba(255, 255, 255, 0.411);
    border-radius: 5px;
    width: 250px;
    height: 150px;
}
/*#navbar                    navbar                    */
.navbar ul{
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    width: fit-content;
}
.navbar li{
    margin-right: 10px;
}

.navbar a{
    font-size: 2.7rem;
    color:var(--text-color);
    border-bottom:0.2rem solid var(--text-color);
    transition: all 0.3s;
    line-height: 1.6;    
}
.navbar a:hover{
    color:var(--text-color-hover);
    border-bottom:0.2rem solid var(--text-color-hover);
}
/*#profile                    profile seite                    */
.profile{
    margin-left: 1rem;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size: 1.9rem;
}
.profile img{
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
}
.profile p{
    margin-left: 2rem;
}
#menu-icon{
    font-size: 3.6rem;
    color:var(--text-color);
    display: none;
}
/*#home                    home/dashboard                    */
.home{
    display: flex;
    justify-content: center;
    background-color: #20608a;
}
.home-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
}
.home-content h1 {
    text-align: center;
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 2.2;
    color: var(--text-color-hover);
}
/*#login                    login seite                    */
.login{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--second-bg-color);
    
}
.login-content h3 {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
}
.login-content h1 {
    text-align: center;
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 2.2;
    color: var(--text-color-hover);
}
/*                    registration                    */
.registration{
    margin-top: 7.5rem;
}
/*                    login inputs                    */
.login-inputs{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
/*                    login inputs username                   */
.login-inputs-username label{
    font-size: 3rem;
}
.login-inputs-username input{
    color: white;
    font-size: 3rem;
    margin-left: 0.5rem;
    background-color: transparent;
    border-top:none;
    border-left:none;
    border-right:none;
    border-bottom: 1px solid rgb(255, 153, 35);
    border-width: none;
}
.login-inputs-username input:focus{
    color: white;
    border-top:none;
    border-left:none;
    border-right:none;
    outline: none;
    border-bottom: 1px solid rgb(255, 255, 255);
}
.login-inputs-username input::placeholder{
    font-size: 2.5rem;
    color: #838383;
}
/*                    login inputs password                   */
.login-inputs-password{
    margin-top: 1.5rem;
}
.login-inputs-password label{
    font-size: 3rem;
}
.login-inputs-password input{
    color: white;
    font-size: 3rem;
    margin-left: 0.5rem;
    background-color: transparent;
    border-top:none;
    border-left:none;
    border-right:none;
    border-bottom: 1px solid rgb(255, 153, 35);
    border-width: none;
}
.login-inputs-password input:focus{
    color: white;
    border-top:none;
    border-left:none;
    border-right:none;
    outline: none;
    border-bottom: 1px solid rgb(255, 255, 255);
}
.login-inputs-password input::placeholder{
    font-size: 2.5rem;
    color: #838383;
}
/*                    reg inputs                   */
.reg-inputs{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
/*                    reg inputs email                    */
.reg-inputs-email label{
    font-size: 3rem;
}
.reg-inputs-email input{
    color: white;
    font-size: 3rem;
    margin-left: 0.5rem;
    background-color: transparent;
    border-top:none;
    border-left:none;
    border-right:none;
    border-bottom: 1px solid rgb(255, 153, 35);
    border-width: none;
}
.reg-inputs-email input:focus{
    color: white;
    border-top:none;
    border-left:none;
    border-right:none;
    outline: none;
    border-bottom: 1px solid rgb(255, 255, 255);
}
.reg-inputs-email input::placeholder{
    font-size: 2.5rem;
    color: #838383;
}
/*                    login inputs username                   */
.reg-inputs-username{
    margin-top: 1.5rem;
}
.reg-inputs-username label{
    font-size: 3rem;
}
.reg-inputs-username input{
    color: white;
    font-size: 3rem;
    margin-left: 0.5rem;
    background-color: transparent;
    border-top:none;
    border-left:none;
    border-right:none;
    border-bottom: 1px solid rgb(255, 153, 35);
    border-width: none;
}
.reg-inputs-username input:focus{
    color: white;
    border-top:none;
    border-left:none;
    border-right:none;
    outline: none;
    border-bottom: 1px solid rgb(255, 255, 255);
}
.reg-inputs-username input::placeholder{
    font-size: 2.5rem;
    color: #838383;
}
/*                    reg inputs password                   */
.reg-inputs-password{
    margin-top: 1.5rem;
}
.reg-inputs-password label{
    font-size: 3rem;
}
.reg-inputs-password input{
    color: white;
    font-size: 3rem;
    margin-left: 0.5rem;
    background-color: transparent;
    border-top:none;
    border-left:none;
    border-right:none;
    border-bottom: 1px solid rgb(255, 153, 35);
    border-width: none;
}
.reg-inputs-password input:focus{
    color: white;
    border-top:none;
    border-left:none;
    border-right:none;
    outline: none;
    border-bottom: 1px solid rgb(255, 255, 255);
}
.reg-inputs-password input::placeholder{
    font-size: 2.5rem;
    color: #838383;
}
/*                    reg inputs password repeat                   */
.reg-inputs-password-repeat{
    margin-top: 1.5rem;
}
.reg-inputs-password-repeat label{
    font-size: 3rem;
}
.reg-inputs-password-repeat input{
    color: white;
    font-size: 3rem;
    margin-left: 0.5rem;
    background-color: transparent;
    border-top:none;
    border-left:none;
    border-right:none;
    border-bottom: 1px solid rgb(255, 153, 35);
    border-width: none;
}
.reg-inputs-password-repeat input:focus{
    color: white;
    border-top:none;
    border-left:none;
    border-right:none;
    outline: none;
    border-bottom: 1px solid rgb(255, 255, 255);
}
.reg-inputs-password-repeat input::placeholder{
    font-size: 2.5rem;
    color: #838383;
}
/*#reg/login                    reg/login inputs buttons                   */
.btn-login{
    margin-top: 3rem;
    width: 100%;
}
.btn-reg{
    margin-top: 3rem;
    width: 100%;
}
.login-btn{
    color: #fff; 
    background-color: #20608a;
    border-radius: 5px;
    padding: 1.2rem;
    float: right;
    font-size: 2rem;
    border: 1px solid #3dff8e00;
    transition: all 0.3s;
}
#login-inputs-login{
    pointer-events: none;
    background-color: #20608a;
}
#login-inputs-login:hover{
    cursor: pointer;
    color: #000;
    background-color: #41b3ff;
}
.login-btn:focus{
    border: 1px solid #41b3ff; 
 }
.reg-btn{
    color: #fff; 
    background-color: #1d8147; 
    border-radius: 5px;
    padding: 1.2rem;
    float: left;
    font-size: 2rem;
    border: 1px solid #3dff8e00; 
    transition: all 0.3s;
}
#reg-inputs-reg{
    pointer-events: none;
    background-color: #20608a69;
}
#reg-inputs-reg:hover{
    cursor: pointer;
    color: #000;
    background-color: #41b3ff;
}
.reg-btn:hover{
    cursor: pointer;
    color: #000; 
    background-color: #3dff8e;
}
.reg-btn:focus{
   border: 1px solid #3dff8e; 
}
/*#reports                    reports                    */
.reports{
    display: flex;
    background-color: #20608a;
    padding: 2rem;
}
.reports-nav{
    border: 1px solid red;
    border-radius: 5px;
    padding: 2rem;
    width: 20%;
}
.reports-navbar{
    padding: 1rem;
    border: 1px solid red;
    border-radius: 5px;
    height: 100%;
}
.reports-navbar-years{
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
.reports-navbar-years li{
    border: 1px solid red;
}
.reports-navbar-years a{
    text-decoration: none;
    color: white;
    font-size: 2rem;
}
.reports-navbar-years option{
    background-color: #0ef;
    font-size: 1.5rem;
}
.reports-navbar li{
    display: block;
}
.report{
    border: 1px solid red;
    border-radius: 5px;
    width: 100%;
    padding: 2rem;
}
/*#about*/
.about{
    display: flex;
    flex-wrap: wrap;
    background-color: rgb(121, 121, 121);
    padding: 2rem;
    color: #ffffff;
}
.about-header{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: fit-content;
    padding: 0.5rem;
}
.about-header h1{
    text-align: center;
    font-size: var(--section-font-size-h1-dest);
    font-weight: 700;
    line-height: 1.2;
    color: rgb(255, 153, 35);
}
.about-header h3{
    text-align: center;
    font-size: 2.2rem;
    width: 80%;
    font-weight: 700;
    line-height: 1.2;
}
.about-center{
    border: 1px solid red;
    width: 100%;
    display: flex;
    height: fit-content;
}
.about-footer{
    border: 1px solid red;
    width: 100%;
    display: flex;
    height: fit-content;
}
@media screen and (max-width: 1576px) {
    .navbar a{
        font-size: 2.0rem;
    }
}
@media screen and (max-width: 576px) {
    /* For tablets: */
    .header{
        padding: 1rem 4%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .logo{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        font-size: 1.8rem;
    }
    .logo a{
        color:#fff;
        font-size: 2.5rem;
    }
    .logo img{
        background-color:rgba(255, 255, 255, 0.411);
        border-radius: 5px;
        width: 150px;
        height: 75px;
    }
    .profile{
        text-align: center;
        margin-left: 0rem;
    }
    .navbar{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .navbar a{
        font-size: 1.7rem;
        margin-left:0.5rem ;
    }
    .home-content h3 {
        font-size: 1.9rem;
        font-weight: 700;
    }
    .home-content h1 {
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 2.2;
    }
    .login-content h3 {
        font-size: 1.9rem;
        font-weight: 700;
    }
    .login-content h1 {
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 2.2;
    }
    .login-inputs-username label{
        font-size: 1.5rem;
    }
    .login-inputs-username input{
        border-radius: 0;
        font-size: 1.5rem;
    }
    .login-inputs-username input::placeholder{
        font-size: 1.3rem;
    }
    
    .login-inputs-password label{
        font-size: 1.5rem;
    }
    .login-inputs-password input{
        border-radius: 0;
        font-size: 1.5rem;
    }
    .login-inputs-password input::placeholder{
        font-size: 1.3rem;
    }
    .reg-inputs-email label,.reg-inputs-username label,.reg-inputs-username input,.reg-inputs-email input,.reg-inputs-username label,.reg-inputs-username input,.reg-inputs-password label,.reg-inputs-password input,.reg-inputs-password-repeat label,.reg-inputs-password-repeat input{
        border-radius: 0;
        font-size: 1.4rem;
    }
    .reg-inputs-username input::placeholder,.reg-inputs-email input::placeholder,.reg-inputs-password input::placeholder,.reg-inputs-password-repeat input::placeholder{
        font-size: 1.2rem; 
    }
    footer h3{
        font-size: 1rem;
    }
    .about-header h3{
        text-align: unset;
        font-size: 1.9rem;
    }
    .about-header h1{
        font-size: 3.2rem;
        line-height: 2.2;
    }
}
@media screen and (max-width: 768px) {
    /* For desktop: */
    .header{
        padding: 1rem 4%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .logo{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        font-size: 1.8rem;
    }
    .logo a{
        color:#fff;
        font-size: 2.5rem;
    }
    .logo img{
        background-color:rgba(255, 255, 255, 0.411);
        border-radius: 5px;
        width: 150px;
        height: 75px;
    }
    .profile{
        margin-top: 1rem;
        text-align: center;
    }
    .navbar{
        margin-top: 1rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .navbar a{
        font-size: 1.7rem;
        margin-left:0.5rem ;
    }
    .home-content h3 {
        font-size: 1.9rem;
        font-weight: 700;
    }
    .home-content h1 {
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 2.2;
    }
    .login-content h3 {
        font-size: 1.9rem;
        font-weight: 700;
    }
    .login-content h1 {
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 2.2;
    }
    .login-inputs-username label{
        font-size: 1.5rem;
    }
    .login-inputs-username input{
        border-radius: 0;
        font-size: 1.5rem;
    }
    .login-inputs-username input::placeholder{
        font-size: 1.3rem;
    }
    
    .login-inputs-password label{
        font-size: 1.5rem;
    }
    .login-inputs-password input{
        border-radius: 0;
        font-size: 1.5rem;
    }
    .login-inputs-password input::placeholder{
        font-size: 1.3rem;
    }
    .reg-inputs-email label,.reg-inputs-username label,.reg-inputs-username input,.reg-inputs-email input,.reg-inputs-username label,.reg-inputs-username input,.reg-inputs-password label,.reg-inputs-password input,.reg-inputs-password-repeat label,.reg-inputs-password-repeat input{
        border-radius: 0;
        font-size: 1.4rem;
    }
    .reg-inputs-username input::placeholder,.reg-inputs-email input::placeholder,.reg-inputs-password input::placeholder,.reg-inputs-password-repeat input::placeholder{
        font-size: 1.2rem; 
    }
    footer h3{
        font-size: 1rem;
    }
    .about-header h3{
        text-align: unset;
        font-size: 1.9rem;
    }
    .about-header h1{
        font-size: 3.2rem;
        line-height: 2.2;
    }
}
