html {
    height: 100%;
    width: 100%;
}

body {
    width: 100%;
    height: 100%;
    position: relative;
    font-family: 'Roboto', sans-serif;
    align-items: start;
    display: flex;
    justify-content: center;
    background-color: #070803;
    margin: 0;
}

#pattern, #gradient {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

#gradient {
    background: url(img/gradient.png) no-repeat center;
    background-size: cover;
    mix-blend-mode: overlay;
}

#pattern {
    background: url(img/pattern.svg) repeat center;
    opacity: .15;
}

span {
    flex-direction: row;
    margin-left: 5px;
    margin-right: 5px;
}

a {
    text-decoration: none;
    color: rgb(69, 116, 186);
}

.bot-username {
    color: #888;
    font-size: 14px;
    margin-top: 5px;
  }

#main {
    align-items: center;
    display: flex;
    justify-content: center;
}

#card {
    margin-top: 20%;
    max-width: 420px;
    /* height: 360px; */
    height: auto;
    padding: 40px 20px;
    border-radius: 5%;
    background: rgb(30, 30, 30);
    align-items: center;
    display: flex;
    flex-direction: column;
    color: #FFF;
}

#photo {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    /* margin-top: 5%; */
    background-image: url(img/chanel_photo.jpeg);
    background-size: 110px;
}

#chanel_name {
    width: 340px;
    /* height: 64px; */
    font-size: 26px;
    line-height: 32px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    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;
}

#button_join {
    width: 150px;
    height: 42px;
    /* margin-top: 50px; */
    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: #15649c;
    margin-top: 24px;
}

.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; }
  }