@import url('https://fonts.googleapis.com/css2?family=Autour+One&display=swap');

body, html
{
    scroll-behavior: smooth;
}
*
{
    font-family: 'Autor One', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 17px;
}
#preloader
{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #231f20 url(../img/preload.gif) no-repeat center center;
    color: 000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
#bot
{
    position: fixed;
    bottom: 50px;
    right: 50px;
    border: none;
    height: 600px;
}

/* LIKNI Z PODKREŚLENIEM PO NAJECHANIU */
a
{
    display: inline-block;
    color: #1e1eec;
    text-decoration: none;
    position: relative;
    transition: .2s;
}
a:visited
{
    color: #5809c0;
}
.a-un::after
{
	content: '';
	width: 0px;
	height: 2px;
	display: block;
	background: #0a0a8a;
	transition: 200ms;
}
.a-un:hover::after
{
	width: 100%;
}
.a-un:hover
{
	color: #0a0a8a;
    transition: .1s;
}
.a-un:visited:hover
{
	color: #360379!important;
    transition: .1s;
}
h1
{
    font-weight: bold;
}

/* CUSTOMOWY SCROLLBAR */
::-webkit-scrollbar
{
    width: 5px;
}
::-webkit-scrollbar-thumb
{
    background: #555;
    -webkit-box-shadow: inset 0 0 6px #555;
    box-shadow: inset 0 0 6px #555;
}
::-webkit-scrollbar-thumb:hover
{
    background: #999;
    -webkit-box-shadow: inset 0 0 6px #999;
    box-shadow: inset 0 0 6px #999;
}
::-webkit-scrollbar-thumb:window-inactive
{
    background: #999;
} 

/* SCROLL NA SAMĄ GÓRĘ */
#to-top
{
    width: 50px;
    height: 50px;
    padding: 13px;
    border-radius: 25px;
    background: #21d3f7;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: .3s;
    z-index: 998;
    opacity: 0;
}
#to-top:hover
{
    background: #0e8aa3;
    transition: .2;
    cursor: pointer;
}
#to-top img
{
    height: 100%;
    position: relative;
    bottom: 2px;
}
.show
{
    opacity: 1!important;
}
.hide
{
    opacity: 0!important;
}