* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    color: #fff;
    background: #09001d;
    overflow: hidden;
}

.main {
    min-height: 100vh;
    pointer-events: auto;
}

.color {
    background: linear-gradient(#49b4ff, #d6edff);
    min-height: 100vh;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    filter: drop-shadow(0 0 5px #0f45a9);
}

.navbar a {
    font-size: 20px;
    color: #1f8fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: #0157f4;
}

/*Der aktive Link in der Navigationsleiste ist nicht anklickbar*/
.navbar .active {
    pointer-events: none;
}







