:root {
   --basic_color: black;
   --navlink: white;
   --navLeiste: #274c77;
   --bodyBack: #e7ecef;
   --kontrastFarbe: #6096ba;
}

@keyframes fadeIn { 
    from { opacity:0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 530px){
    main {
        display:block;
    }
    article {
        width:auto;
    }
    
}

/*Header und Nav Leiste*/
nav {
    background-color: var(--navLeiste);   
    
}



.logoimg {
    position: absolute;
    left: 20px;
    top: 30px;
    padding: 0.2rem;
    border-radius: 5px;
    margin-right: auto;
}

nav ul {
    margin: 0;
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
}

nav a {
    color: var(--navlink);
    display: block;
    text-decoration: none;
    padding: 0.8rem;
    font-size: medium;

}

nav a:hover {
    font-style: italic;
}

nav a.aktuell {
    font-weight: bold;
}

/*body Formate*/

body {
    background: radial-gradient(circle,var(--bodyBack), var(--kontrastFarbe));  
}

/*main*/

h1 {
    text-align: center;
}

main {
    max-width: 62rem;
    margin: auto;
    display: block;
}

article {
    width: 50%;
    margin: 1.5rem;
    padding: 2rem;
}

.linksb {
    display: flex;
    width: 80%;
    
    
    
}

.regular {
    display:flex;
    max-inline-size: 25%;
    height: auto;
    margin:auto; 
    border-radius: 8px;
         
}

.rechtsb {
    display:block;
     width: fit-content; 
}
    

    
    





/*footer */

.footer {
    font-size: small;
    background-color: var(--navLeiste);
    color: #ffffff;
    text-align: center;
    
}

.footerLink {
    color: var(--navlink);
    text-decoration: none;
}