@font-face {
    font-family: Ubuntu-Bold;
    src: url(Ubuntu-Bold.ttf);
}

@font-face {
    font-family: Ubuntu-Regular;
    src: url(Ubuntu-Regular.ttf);
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 98% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

:root {
    color-scheme: only light;
}  

.filter-white {
    filter: invert(100%) sepia(6%) saturate(3726%) hue-rotate(291deg) brightness(120%) contrast(105%);
}

b {
    font-family: Ubuntu-Bold;
}

table {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

body {
    font-family: Ubuntu-Regular;
    color: white;
    background: rgb(35, 28, 149);
    background: linear-gradient(90deg, rgba(35, 28, 149, 1) 0%, rgba(91, 57, 119, 1) 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

body,
html {
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

#lewy {
    width: 45vw;
    padding: 10px;
}

#p6  { 
    text-align: center; 
}

h1 {
    font-family: Ubuntu-Bold;
}

#s {
    width: 20vw;
}

#p6 {
    align-items: center;
}

a:link {
    color: #9bdcff;
}

a:visited {
    color: #c274e8;
}

@media only screen and (max-device-height: 768px) {
    #lewy {
        width: 75vw;
    }
    body {
        font-size: 15px;
    }
}

@media only screen and (max-device-width: 480px) {
    html {
        display: inline;
        margin: auto;
        height: auto;
        #lewy,#prawy {
            width: auto;
        }
    }
    body {
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 30px;
    }
    .container {
        display: inline;
    }

    #s {
        width: 90%;
    }

    #prawy {
        text-align: center;
    }
}