*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin; 
    scrollbar-color: #c7c89f #1a1a1a;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgb(26, 26, 26);
}

::-webkit-scrollbar-thumb {
    background-color: rgb(199, 200, 159);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}
  
body{
    background-color: #121116;
}

a {
    color: inherit;
    text-decoration: none;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #121116;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-text {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-size: 38px;
    color: #c7c89f;
    text-transform: uppercase;
}

.arrow_up-block {
    position: fixed;
    bottom: 20px;
    right: -60px;
    cursor: pointer;
    opacity: 0;
    transition: right 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}
.arrow_up-block.show {
    right: 20px;
    opacity: 1;
}

.basic_block{
    margin: 10px 140px 0 140px; 
    text-align: center;
}

.basic_block h2{
    font-family: "Genos", sans-serif;
    font-weight: 300;
    font-size: 150px;
    color: rgb(199, 200, 159);
    letter-spacing: -5px;
    text-transform: uppercase;
    line-height: 100px;
}

.basic_block h2 span{
    color: #6d6e5c;
}

.basic_block img{
    width: 900px;
    height: 350px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}