* {
    margin: 0px;
    padding: 0px;
}

a, a:hover, a:active, a:visited {
    text-decoration: none !important;
    color: white ;
}

body {
    background: url("/static/images/bg.png") no-repeat center center / cover;
    height: 100vh;
    display: flex;
    /* flex-direction: row; */
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    background-attachment: fixed;
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

/* .blocks {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
} */

.title {
    text-align: center;
}

.main {
    margin: 25px 25px;
    background-color: rgb(56, 56, 56);
    width: 350px;
    /* height: 550px; */
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;

    color: white;
    border: 2px solid rgb(54, 54, 54);

      box-shadow: 
    0 0 5px #59b686,
    0 0 10px #59b686,
    0 0 20px #59b686,
    0 0 40px #59b686,
    0 0 80px #59b686;
}

.main .logo {
    width: 105px;
    height: 105px;
    border-radius: 100%;
    /* border: 4px solid white; */
}

.main.two {
    height: 350px !important;
}

.main .img {
    width: 300px;
    border-radius: 15PX;
}

.main .title {
    font-size: 27px;
    margin-top: 15px;
    font-weight: 700;
}

.main .subs {
    margin-top: -15px;
    color: rgb(148, 148, 148);
    font-size: 18px;
    font-weight: 500;
}

.main .context {
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

button {
    padding: 5px;
}

.main button {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    /* height: 45px; */
    border: none;
    border-radius: 17px;
    color: white;
    background-color: rgb(28, 147, 227);
    padding: 0px 15px;
    font-weight: 700;
    font-size: 20px;
    padding-bottom: 3px;
    padding: 5px;
}

.fa-telegram {
    font-size: 35px;
}

.reserved {
    position: absolute;
    bottom: 0px;
    color: rgb(145, 145, 145);
}

.bot {
    color: rgba(255, 255, 255, 0.479);
    margin-top: 5px;
}

.bot a {
    color: rgba(255, 255, 255, 0.5) !important;
}

@media only screen and (max-width: 800px) {
    body {
        height: auto !important;
    }

    .reserved {
        display: none !important;
    }
}