html {
    scrollbar-gutter: stable;
    overflow-y: scroll;
    overflow-x: hidden;
}
html::-webkit-scrollbar {
    width: 15px;
}
html::-webkit-scrollbar-track {
    right:3px;
    background:0 0;
    z-index:200
}
html::-webkit-scrollbar-thumb {
    background:#333
}
html::-webkit-scrollbar-thumb:before {
    content:"";
    display:block;
    position:absolute;
    top:0;
    right:-3px;
    left:-3px;
    bottom:0
   }
html::-webkit-scrollbar-thumb:hover {
    background:#2b2b2b
}

body {
    margin: 0px;
    background-color: #231D27;
    font-family: 'Fira Sans', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h2 {
    color: whitesmoke;
    margin-bottom: 0px;
}
h2 img {
    position: relative;
    top: -2px;
    height: 1em;
    vertical-align: middle
}
.cover {
    width: 100%;
    max-width: 1900px;
    height: 75vh;
    max-height: 580px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.videoBlock {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.avatarBlock {
    max-width: 500px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.avatarBlock p {
    text-align: center;
    color: whitesmoke;
}
.avatar {
    height: 150px;
    width: 150px;
    overflow: hidden;
    border-radius: 100px;
}
.avatar img {
    width: 100%;
}
.links {
    min-width: 300px;
    width: 100vw;
    max-width: 1200px;
    font-size: 14px;
    color: #fefefe;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.link {
    min-width: 250px;
    width: 350px;
    margin:5px 5px;
}
.link svg {
    color: #C85588;
    position: relative;
    top: -1px;
    height: 1.5em;
    width: 1.5em;
    margin-right: 5px;
    vertical-align: middle
}
.link p {
    color: rgb(124, 124, 124);
}
a {
    text-decoration: none;
    color: whitesmoke;
}
a:hover {
    text-decoration: none;
    color: #C85588;
}
.space {
    width: 100vw;
    max-width: 1200px;
    height: 70px;
}