body {
    background: url(./assets/images/bg.png) no-repeat;
    background-position: center 0;
    background-attachment: fixed;
}



.main {
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.shuoki-title {
    display: block;
    font-size: 100px;
    color: var(--style-color);
}

.shuoki-description span {
    color: var(--style-color);
}

.shuoki-description {
    font-size: 20px;
    width: 50%;
    margin: 0 auto;
}


@media (max-width:770px) {
    .shuoki-description {
        width: 70%;
    }
}

@media (max-width: 630px) {
    .shuoki-title {
        font-size: 75px;
    }
}

@media (max-width: 465px) {
    .shuoki-title {
        font-size: 55px;
    }

    .shuoki-description {
        width: 100%;
    }
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;

    padding-top: 15px;
}

.link-btn {
    width: 150px;
    padding: 12px 0;

    border-radius: 5px;
    transform: skew(-5deg);
    transition: .15s ease-in-out;
}

.link-btn:active {
    opacity: .8;
}

.btn-discord {
    border: 2px solid #5865F2;
    background: rgb(88, 101, 242, 0.3);
    color: #414ab3;
}

.btn-discord:hover {
    background: rgb(88, 101, 242, 0.5);
}

.btn-github {
    border: 2px solid rgb(31,35,40);
    background: rgb(31,35,40, 0.3);
    color: rgb(31,35,40);
}

.btn-github:hover {
    background: rgb(31,35,40, 0.5);
}

.btn-tg {
    border: 2px solid #138ac5;
    background: rgb(19, 138, 197, 0.3);
    color: #138ac5;
}

.btn-tg:hover {
    background: rgb(19, 138, 197, 0.5);
}