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


html {
    font-size: 1px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

img {
    user-select: none;
    pointer-events: none;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

#background-video {
    object-fit: cover;
    height: 100%;
}

.wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logo {
    width: 224px;
    height: 224x;
}

.account {
    color: #FFFFFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 25px;
    transition: .1s ease-in-out opacity;
    text-decoration: none;
}

.account:hover {
    opacity: 0.7;
}

.btns {
    margin-top: 22px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 300px;
}

.btn {
    display: block;
    padding: 16px;
    border: 1px solid #fff;
    border-radius: 20px;
    margin: 10px;
    transition: .1s ease-in-out transform;
}

.btn img {
    width: 36px;
    height: 36px;
}

.btn--special {
    border-color: #23C0DB;
    border-width: 2px;
}

.btn:hover {
    transform: scale(1.05);
}

@media (max-width: 320px) {

}
