:root {
    --background-color: #00cc66ff;
    --text-color: black;
    --primary-color:  rgb(237, 242, 245);
    --accent-color-hover: #2274a5ff;
    --text-color-footer:  #2274a5ff;
    --background-color-footer: #00cc66ff;
    --background-color-shadow: rgb(2, 151, 76); 
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}
@font-face {
    font-family: "Poppins";
    src: url("/Doku/src/fonts/Poppins-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Poppins-Bold";
    src: url("/Doku/src/fonts/Poppins-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    background-color: var(--background-color);
    
}
header {
    position: sticky;
    width: 100vw;
    top: 0;
    z-index: 2;
    margin-bottom: 0.5rem;
    background-color: var(--background-color);
    
    
}
.nav-flex {
    display: flex;
    justify-content: space-between;
    background: var(--background-color);
    box-shadow: 10px 10px 10px var(--background-color-shadow);
    font-family: "Poppins-Bold";
}
.nav-logo {
    width: 50px;
    border: solid 4px whitesmoke;
    border-radius: 20%;
    margin-right: 0.5rem;
    box-shadow: 6px 5px 15px -3px var(--background-color-shadow);
}
.nav-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 60%;
    margin: 0.5rem;
    font-size: 1.2rem;
}
.nav-left-link{
    display: flex;
    width: 40%;
    gap: 1rem;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--background-color);
}

.nav-logo {
    height: 3rem;
}
.nav-link {
    padding: 1rem;
    color: #333;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease-out;
}
.nav-link:hover {
    color: var(--accent-color-hover);
}
.nav-right {
    width: 50.66%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 1rem;
    font-size: 1.2rem;
    gap: 1rem;

}
.nav-link i {
    color: var(--primary-color);
    padding: 0.5rem;
}
.nav-link i:hover {
    color: var(--primary-color);
}
.nav-link i::after {
    content: "";
}
.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
}
.nav-link:hover {
    color: var(--accent-color-hover);
}
.con-grid{
    display: grid;
    width: 100vw;
    grid-template-columns: 2fr 2fr ;
    grid-template-rows: auto;
    grid-template-areas: 
    "hero hero "
    "skill skill"
    "post post"
    "tool tool"
    "guide guide"
    "footer footer";
}
.hero{
    display: flex;
    flex-direction: column;
    grid-area: hero;
    background-image: url(/Kita/src/img/kitahero.png); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(90%);
    height: 70vh;
    justify-content: start;
    align-items: center;
    text-align: center;
    color: var(--primary-color);
    box-shadow: 10px 10px 10px var(--background-color-shadow);
    margin-bottom: 0.5rem;
}
.languge{
    display: flex;
    justify-content: end;
    width: 95%;
}
.daten{
    background-color: whitesmoke;
    color: black;
    text-align: start;
}
.hero h1{
    display: inline;
    margin-top: 7rem;
    font-size: 3rem;
    width: 95%;
}
.free1{
    grid-area: free1;
}
.skill{
    grid-area: skill;
}
.free2{
    grid-area: free2;
}
.post{
    grid-area: post;
}
.tool{
    grid-area: tool;
}
.guide{
    grid-area: guide;

}
footer{
    background: var(--background-color-footer);
}
.links-footer a {
    text-decoration: none;
    color: var(--text-color-footer);
}
.links {
    width: 100%;
    color:  var(--text-color);
    font-size: 12px;
}
.links-inner {
    display: flex;
    justify-content: space-between;
    margin: 1rem;
    padding: 0;
}
.links-inner h3 {
    color: var(--text-color-footer);
}
.footer-links-wi{
    display: flex;
    flex-direction: column;
}
.links li {
    line-height: 2;
    list-style: none;
}
.footer ul {
    display: flex;
    flex-wrap: wrap;
}
.links-footer {
    display: flex;
    grid-area: footer;
    
}
.links-footer a:hover {
    color: black;
}
.footer-links-sm{
    display: flex;
    font-size: 2rem;
    margin-right: 5rem;
}
.footer-links-sm a{
    padding-right: 1rem;
}
@media only screen and (min-width: 720px ) {
    .hero{
        height: 90vh;
    }
}