body {
    user-select: none;
    color: white;
    background-color: rgb(11, 11, 14);
    margin: 12px;
    padding: 12px;
    font-family: Tahoma, sans-serif;
    background-image: url("bg.png");
    background-size: cover;

}

.nadpis {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: 30px;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    width: 1200px
}

.imgbutton {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: 300px;
    margin-left: 0px;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);

}

a.button {

    text-orientation: upright;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: rgba(234, 231, 255, 0.6);
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    /* display:flex; */
    border: 2px solid rgba(205, 210, 255, 0.1);
    /* -webkit-filter: brightness(75%) grayscale(100%) sepia(100%) hue-rotate(225deg) saturate(200%) contrast(1.5);
    filter: brightness(75%) grayscale(100%) sepia(100%) hue-rotate(225deg) saturate(200%) contrast(1.5); */
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-repeat: no-repeat;
    background-size: 150%;
    background-position: 50% 50%;
    cursor: pointer;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    /* -webkit-text-stroke: 1px aqua; */
    /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8); */
    margin: 4px;
    padding: 20px;
    padding-right: 28px;
    padding-left: 28px;
    font-family: Tahoma, sans-serif;
    border-radius: 20px;
    background: linear-gradient(145deg, #25242e, #17171c);
    width: 300px;
    /* box-shadow: 10px 10px 40px #111114,
        -10px -10px 40px #2e2d39; */
}


.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
}

.center {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.wave {
    width: 5px;
    height: 100px;
    background: linear-gradient(45deg, cyan, #fff);
    margin: 10px;
    animation: wave 1s linear infinite;
    border-radius: 20px;
}



