@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background:transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('tło2.gif') no-repeat;
    background-size: cover;
    background-position: center;
}

.discord {
    font-size: 1px;
    color: rgb(0, 228, 91);
    margin-top: 300px;

}

.discord button {
    background-color: purple;
    font-size: 30px;
}

.logo {
    color: red;

}

.navigation {
    font-size: 25px;
}

.navigation a {
    position: relative;
    font-size: 1.1em;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
}

.navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    transform-origin: right;
    background: white;
    border-radius: 5px;
    transform: scaleX(0);
    transition: transform .5s;
}

.navigation a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

.regulamin {
    color: silver;
}

.netflix {
    margin-right: 1200px;
    margin-bottom: 450px;
    color: silver;
}

.spotify {
    margin-left: 100px;
    color: silver;
}

.kontakt {
    color: purple;
    font-size: 50px;
    background: silver;
    margin-bottom: 350px;
}











        