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

@font-face {
    font-family: 'HelveticaNeueCyr'; /*a name to be used later*/
    src: url('fonts/helveticaneuecyr_roman.otf'); /*URL to font*/
}

body {
    margin: 0;
    background: black;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.cover {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

.background {
    background: url("images/background.png");
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.background-dark-filter {
    background: black;
    opacity: 45%;
    z-index: -1;
}

.fluid {
    width: 100%;
}

.header {
    margin-top: 108px;
    margin-left: 111px;
}

.helvetica {
    font-family: 'HelveticaNeueCyr', serif;
}

.decor {
    position: absolute;
    top: 0;
    right: 0;
    height: 300px;
    width: 700px;
    background: url("images/decor2-1.svg");
    background-repeat: no-repeat;
    background-position-x: 89px;
    background-position-y: 0px;
    background-size: auto;
}

.decor2 {
    width: 332px;
    height: 132px;
    position: absolute;
    top: calc(1100px - 132px);
    background: url("images/decor.svg");
}

.main-line {
    margin-top: 29px;
    display: inline-flex;
    align-items: end;
}

.creators {
    margin-left: 108px;
}

.creators-header {
    font-family: 'Inter', serif;
    font-weight: 700;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.creators-label {
    font-size: 10px;
    color: white;
    text-transform: uppercase;
}

.creators-contacts {
    width: 184px;
    display: inline-flex;
    color: white;
    font-weight: 800;
    font-size: 16px;
}

.creators-list {
    padding: 0;
    margin-top: 0;
    margin-left: 17px;
}

.creators-contacts li {
    list-style: none;
    width: fit-content;
    margin-bottom: 6px;
}

.creators-contacts li a {
    color: white;
    text-decoration: none;
}


.creators-contacts li a::after {
    content: '';
    width: 0;
    height: 2px;
    display: block;
    background: white;
    transition: 300ms;
    position: relative;
    left: -2.5px;
    top: 2px;
}

.creators-contacts li a:hover::after {
    width: calc(100% + 5px);
}

.social-buttons {
    margin-left: 140px;
    width: 133px;
    display: inline-flex;
    justify-content: space-between;
    padding: 0;
}

.social-buttons li {
    list-style: none;
    border: white 1px solid;
    border-radius: 50%;
    position: relative;
    font-size: 13px;
    width: 31px;
    height: 31px;
    transition: bottom .25s ease-in-out;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    margin-top: 71px;
}

.social-buttons li:hover {
    bottom: 3px;
}

.social-buttons li a {
    text-decoration: none !important;
    color: white;
}

.about {
    display: inline-flex;
    justify-content: space-between;
    margin-left: auto;
}

.desc-line {
    display: inline-flex;
}

.about-quote {
    margin: 0;
    font-size: 75px;
    color: white;
    height: 40px;
}

.about-description {
    margin: 0;
    color: white;
    font-size: 16px;
    width: 419px;
}

.desc-cont {
    color: white;
    width: 298px;
    margin-top: 38px;
    font-size: 16px;
    margin-left: 89px;
    margin-right: 95px;
}

.villager {
    margin-left: auto;
    margin-right: 624px;
}
.install-outer {
    display: inline-flex;
    justify-content: end;
    margin-top: 73px;
}
.install {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-right: 285px;
}

.server-version {
    font-size: 12px;
    line-height: 23px;
}