body {
    background: #000;
    color: white;
}

a {
    color: #fff;
}

a:visited {
    color: #ddd;
}

#container {
    width: 1050px;
    margin: 0 auto;
    height: 1141px;
    position: relative;
}

#background {
    background: url("st.jpg") center bottom no-repeat;
    width: 1550px;
    height: 866px;
    position: absolute;
    left: -250px;
}

#foreground {
    position: absolute;
    background: url("falling.avif") center top no-repeat;
    width: 1550px;
    height: 1141px;
    left: -250px;
}

#quotes-container {
    width: 1550px;
    height: 1000px;
    position: absolute;
    left: -250px;
}

#quotes {
    margin: 0 auto;
    padding-top: 281px;
    width: 1550px;
    transition: all 0.3s ease;
    text-align: center;
}

#quotes .item .value {
    font-family: 'Oxygen', sans-serif;
    font-size: 130px;
    text-shadow: 0 0 15px #555;
    font-weight: bold;
    transition: all 1s ease;
    color: white;
    opacity: 0.7;
}

#quotes .item {
    display: inline-block;
    margin: 0 25px 0;
}

#quotes .item .note {
    letter-spacing: 3px;
    margin-top: 20px;
    opacity: 0.6;
    text-shadow: 0 0 3px #666;
}

#audio {
    position: absolute;
    z-index: 5;
}

#ruble-container {
    width: 1550px;
    height: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    left: -250px;
}

#ruble-container2 {
    width: 1550px;
    height: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.ruble {
    width: 32px;
    height: 32px;
    background: url("ruble.png");
    position: absolute;
}

#thanks {
    margin: 10px;
}

#copyright {
    margin: 10px;
}

#quotes #brent {
    display: none;
}


.preloader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}


.glow-on-hover {
    font-size: xx-large;
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

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

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