@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

* {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    user-select: none;
}

.bg {
    position: absolute;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.pasek {
    background-color: rgb(20, 20, 20);
    width: 100%;
    height: 50px;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background: linear-gradient(to right, #f8b201, #ff6600);
    background-size: 300% 300%;
    animation: bg 5s ease infinite;
}

h1 {
    position: absolute;
    font-size: 50px;
    font-weight: 0;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    filter: drop-shadow(0px 0px 6px rgb(20, 20, 20));
}

@keyframes bg {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}