@import 'https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap';* {
    font-family: rajdhani,sans-serif
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /*Kann zu Problemen führen weil elemente kleiner werden durch margin bzw. padding*/
    
}

body {
    background-color: #0E172F;
    background: linear-gradient(180deg, #0E172F , #17180d);
    height: 100%;
}

a:hover {
    color: #00BFFE;
    text-shadow: 0 0 0.4vw #00BFFE;
}

header {
    width: 100%;
    height: 12vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2vh;
    border-bottom: 0.2vh solid #222;
    background-color: #11111142;
    
}

header li {
    list-style: none;
    display: inline-block;
    
}



#list {
    flex-basis: 60vw;
}

#buttonList {
    flex-basis: 20vw;
}

#logo {
    flex-basis: 20vw;
}

header ul {
    display: flex;
    justify-content: space-around;
}

button {
    
    background-image: linear-gradient(to right, #067AFD, #00BFFE, #067AFD);
    background-size: 300% 300%;
    color: #eee;
    border-radius: 10vw;
    padding: 1vh;
    font-size: 1.5em;
    border: 1px solid #111;
    transition: 500ms;
    
}

a {
    text-decoration: none;
    color: #eee;
    font-size: 1.5em;
}

button:hover {
    cursor: pointer;
    background-position: right center;
    box-shadow: 0 0 0.5vw #00befe7a;
}



button:active {
    transition: none;
    transform: scale(0.95);
    
    
}


