body {
    width: 100vw;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    align-items: center;
    display: flex;
    justify-content: center;
}

span {
    flex-direction: row;
    margin-left: 5px;
    margin-right: 5px;
}

a {
    text-decoration: none;
    color: rgb(69, 116, 186);
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
}

#canvas {
    position: absolute;
    background-image: url(canvas.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
}

#pattern {
    position: absolute;
    mix-blend-mode: overlay;
    background: center repeat;
    background-image: url(pattern.svg);
    background-size: 420px auto;
    opacity: 0.3;
    width: 100vw;
    height: 100vh;
}

#main {
    z-index: 100;
    align-items: center;
    display: flex;
    justify-content: center;
}

#card {
    margin-top: 25%;
    padding: 30px 20px;
    max-width: 420px;
    border-radius: 5%;
    background: #fff;
    align-items: center;
    display: flex;
    flex-direction: column;
    color: #000;
}

#photo {
    width: 122px;
    height: 122px;
    border-radius: 100%;
    margin-top: 5%;
    background-image: url(photo.jpg);
    background-size: 122px;
}

#chanel_name {
    font-size: 26px;
    line-height: 32px;
    font-weight: bold;
    text-align: center;
    max-width: 340px;
    padding: 0 10px;

    margin-top: 16px;
    display: flex;
    flex-direction: column;
}

#chanel_description {
    width: 350px;
    height: 70px;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    margin-top: 2.5%;
    display: flex;
    flex-direction: column;
}

#subscribers {
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    padding: 6px 16px 0;
    color: #7d7f81;
}

#description {
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    margin: 10px 16px 0;
        text-overflow: ellipsis;
}

#button_join {
    width: 150px;
    height: 42px;
        margin-top: 24px;
    border: none;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 22px;
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    line-height: 0;
    text-align: center;
    background-color: #2481cc;
}

.shine {
    background-image: linear-gradient(270deg, rgba(100, 181, 239, 0) 48.44%, #64b5ef 75.52%, rgba(100, 181, 239, 0) 100%);
    background-repeat: no-repeat;
    animation: bg-move linear 5s infinite;
}

@-webkit-keyframes bg-move {
    0% {
        background-position: -500px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes bg-move {
    0% {
        background-position: -500px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}