* {
    box-sizing: border-box;
}

body::-webkit-scrollbar {
  width: 4px;               /* ширина scrollbar */
}
body::-webkit-scrollbar-track {
  background: rgb(189, 189, 189);        /* цвет дорожки */
}
body::-webkit-scrollbar-thumb {
  background-color: transparent;    /* цвет плашки */
  border-radius: 20px;       /* закругления плашки */
  border: 3px solid #f0ab40;  /* padding вокруг плашки */
}

html {
    height: 100%;
    background-color: #FCFBF9;
    background-image: url('../images/back_tex.png');
}

body {
    height: 100%;
    font-family: "Nimbus Mono", 'Courier New', Courier, monospace;
    color: #474747;
}

.font {
    font-family: "Anonymous Pro", "Nimbus Mono", 'Courier New', Courier, monospace;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

a, a:visited{
    text-decoration: none;
    color: unset;
}

h5 {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
}

.text {
    line-height: 1.5;
}

.display_1 {
    font-size: 4.5rem;
    color: #202020;
    text-transform: uppercase;
    font-weight: 500;
}

.back {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #546de5;
}

.download {
    color: #3742fa;
}

.wrapper {
    display: grid;
    position: relative;
    width: 990px;
    height: 100%;
    margin: 0px auto;
    padding: 20px;
    /* background-color: #fff; */
}

.header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
}

.header_logo {
    width: 50%;
}

.header_logo img {
    height: 100px;
}

.header_menu {
    width: 100%;
}

.menu {
    display: flex;
    width: 100%;
    justify-content: space-around;
    text-transform: uppercase;
}

.menu li a {
    color: #485460;
    transition: all 0.3s ease-out;
}

.menu li a:hover {
    font-weight: 600;
    border-color: #303952;
}

.menu a.active {
    padding: 5px 10px;
    border-bottom: 2px solid #f0ab40;
    font-weight: 600;
}

.main {
    /* background-color: gray; */
}

.descriptions {
    line-height: 2rem;
}

.footer {
    /* position: absolute;
    bottom: 0px;
    left: 0px; */
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    padding: 20px 0px;
}

.footer_right {
    /* display: flex;
    flex-direction: column; */
}

.footer_right img {
    width: 50px;
}

.rocketcube_link {
    text-transform: uppercase;
    font-weight: bold;
    color: #df2d2f !important;
}

.rocketcube_link a:visited{
    color: #df2d2f !important;
}

.list li {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.list li a:hover {
    border-bottom: 1px solid #596275;
}