.hintBox {
    padding: 14px !important;
    margin: 30px 20px 0px 20px !important;
}

.serverBtns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.dataCont {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
}

.backBtn {
    font-size: 20px;
    text-align: center;
    margin: 0 10px 0 10px;
}

.demoBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    transition: .3s scale;
    width: 100px;
}

.demoBtn:active {
    scale: .9;
}

@media (min-width: 1280px) {
    .demoBtn:hover {
        scale: .95;
    }

    .demo img:hover {
        scale: 1.1;
    }
}


.demoBtn.light {
    background: rgba(255, 0, 0, 0.2);
}

.demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    user-select: none;
    -webkit-user-select: none;
    transition: .3s all;
    width: 240px;
    height: 150px;
    color: #dddddd;
}

.demo img {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    transition: .3s all;
    cursor: pointer;
}

.demo .dwnl {
    left: 10px;
}

.demo .copy {
    right: 10px;
}

.demo p {
    font-size: 16px;
    font-weight: 400;
}

.demo h1 {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0 0px 0;
    color: white;
}

.demo h2 {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    position: absolute;
    bottom: 10px;
}