* {
    --background-color: orange;
    --color: orange;
}

body {
    background-color: #0f0f0f;
    color: white;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    height: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(30, 30, 30, 0.7);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    height: 60px;
    z-index: 10;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.navl img {
    filter: invert(100%);
    width: 35px;
}

.navr ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.navr a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navr a:hover {
    color: #ff9800;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 70px;
    margin-top: 100px;
    text-shadow: 0 0 15px #ff9800;
    line-height: 1.2;
}

.text {
    background: linear-gradient(90deg, #ff9800, #ff5722);
}

.container a {
    color: white;
    text-decoration: none;
    text-align: center;
}


/*
.box {
    background: rgba(139, 69, 19, 0.9);
    padding: 25px;
    border-radius: 20px;
    max-width: 600px;
    text-align: left;
    transition: scale 0.5s, background 0.5s;
}

.box:hover {
    scale: 1.20;
}
    */

.container {
    display: flex;
    flex-direction: row;
    /* <- wichtig! */
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.item {
    text-align: center;
}

.text-button {
    padding: 30px;
    background-color: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.text-button:hover {
    background-color: rgba(255, 152, 0, 0.4);
    color: #fff;
    box-shadow: 0 0 15px #ff9800;
    scale: 1.05;
}

.text-button:hover {
    background-color: rgba(255, 152, 0, 0.4);
    color: #fff;
    box-shadow: 0 0 15px #ff9800;
    scale: 1.05;
}

.box {
    background: rgba(255, 106, 0, 0.803);
    border-radius: 20px;
    max-width: 600px;
    transition: scale 0.5s, transform 0.4s, box-shadow 0.4s, background 0.5s;
    box-shadow: 0 0 0 transparent;
    border: 2px solid transparent;
    padding: 15px;
}

.box:hover {
    scale: 1.05;
    box-shadow: 0 0 15px #ff9800;
    border-color: #ff990056;
    background-color: rgb(255, 157, 0);
}

.box img {
    max-width: 100px;
}

footer {
    margin-top: 50px;
    padding: 20px;
    background-color: #111;
    font-size: 14px;
    letter-spacing: 1px;
}

footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

.cred {
    color: rgba(255, 255, 255, 0.326)
}

body>footer {
    margin-top: auto;
}

.navl img {
    filter: invert(100%);
    transition: filter 0.3s ease;
}

.navl img:hover {
    filter: invert(54%) sepia(96%) saturate(900%) hue-rotate(-15deg) brightness(105%);
    cursor: pointer;
}