*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    display:flex;
    background:#f8fafc;
}

/* Sidebar */

.sidebar{
    width:230px;
    height:100vh;
    background:#1e3b37;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:20px;
    position:fixed;
    left:0;
    top:0;
}

.sidebar h2{
    margin-bottom:20px;
}

/* Menü */

.menu-title{
    margin-top:20px;
    margin-bottom:8px;
    color:#60a5fa;
    font-weight:bold;
    font-size:15px;
}

.submenu{
    margin-left:10px;
    border-left:2px solid #334155;
    padding-left:10px;
}

.submenu a{
    display:block;
    color:white;
    text-decoration:none;
    padding:6px 8px;
    border-radius:6px;
    margin:2px 0;
    transition:0.2s;
}

.submenu a:hover{
    background:#334155;
}

/* Footer */

.footer-links{
    padding-top:15px;
}

.footer-links a{
    display:block;
    color:#94a3b8;
    text-decoration:none;
    margin:8px 0;
    font-size:13px;
}

.footer-links a:hover{
    color:white;
}

/* Inhalt */

.content{
    margin-left:230px;
    padding:40px;
    flex:1;
}

.content h1{
    margin-bottom:20px;
}

.content p{
    margin-bottom:20px;
    line-height:1.6;
}

.code{
    background:white;
    border:1px solid #dbeafe;
    border-left:5px solid #3b82f6;
    padding:15px;
    border-radius:10px;
    font-family:Consolas, monospace;
    white-space:pre-wrap;
}

.server-box{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.tech{
    flex:1;
    background:white;
    border:1px solid #dbeafe;
    border-left:5px solid #76eec6;
    padding:15px;
    border-radius:10px;
    font-family:Consolas, monospace;
}

.text{
    flex:2;
    background:white;
    border:1px solid #dbeafe;
    padding:15px;
    border-radius:10px;
}

.bild{
    flex:1;
}

.bild img{
    width:100%;
    border-radius:10px;
    display:block;
}
