* {
    margin: 0;
    padding: 0;
    user-select: none;
    font-family: Inter, sans-serif;
    font-weight: 700;
    color: white;
    text-decoration: none;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    background: #272934;
}
body::-webkit-scrollbar {
    display: none;
}
.header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
}
.header .left {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    margin-right: auto;
    margin-left: 3.5%;
}
.header .left:hover {
    transform: scale(1.05);
}
.logo {
    width: 50px;
    border-radius: 12px;
}
.left p {
    margin-left: 10px;
}
.right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: 2.5%;
}
.right a p {
    margin-left: 20px;
    color: rgb(161, 161, 161);
    transition: 0.3s;
    font-size: 18px;
}
.right a p:hover {
    color: rgb(160, 17, 255);
    filter: drop-shadow(0px 0px 4px rgb(160, 17, 255));
    border-bottom: 1px solid rgb(160, 17, 255);
    transform: scale(1.03);
    transition: 0.6s;
}
.main-sector {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    text-align: center;
}
.partner-card {
    margin-left: auto;
    margin-right: auto;
    width: auto;
    max-width: 80%;
    max-width: 500px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-color: #1d222b;
    padding: 20px;
    border-radius: 10px;
}

.ServerName {
    font-size: 25px;
    color: rgb(160, 17, 255);
}

.ServerAdd {
    font-size: 15px;
    margin-top: 50px;
    color: #8992af;
}

.svg {
    margin-top: 157px;
}

.button {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(425px, 100%), 1fr));
    text-align: center;
    max-width: 190px;
    font-size: 40px;
    display: flex;
    margin-right: auto;
    margin-left: auto;
}

.btn {
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

.started-btn {
    border: 2px solid #813ecc !important;
    font-size: 25px !important;
    padding: 8px;
    margin-top: 100px;
    transition: 0.3s ease-in;
}
.started-btn:hover {
    background: #813ecc !important;
    transition: 0.45s;
}


.info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.left-img {
    height: 170px;
    width: 700px;
    border-radius: 5px;
    border: 4px white solid;
    background-color: #1d222b;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    margin-top: 20px;
    transition: 0.3s;
}

.about-text {
    max-width: 1000px;
    margin-top: 30px;
    font-size: 40px;;
}

.about-text h1 {
    color: rgb(160, 17, 255);
    filter: drop-shadow(0px 0px 4px rgba(160, 17, 255, 10.5));
}
.about-text p {
    color: grey;
}

.about-text-small {
    max-width: 1000px;
    margin-top: -4px;
    font-size: 15px;
}
.about-text-small h1 {
    color: rgb(255, 255, 255);
}

.about-text-verysmall {
    max-width: 1000px;
    margin-top: 30px;
    font-size: 7px;
    margin-left: auto;
    margin-right: auto;
}
.about-text-verysmall h1 {
    color: #8992af;
}

.red-span {
    color: rgb(255, 0, 0);
}

span {
    color: rgb(160, 17, 255);
}

@keyframes down {
    0% {
        margin-top: 50px;
    }
    50% {
        margin-top: 70px;
    }
    100% {
        margin-top: 50px;
    }
}
@media only screen and (max-width: 850px) {
    .about-text {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
    .left-img {
        margin-left: auto;
        margin-right: auto;
    }
}



#more-btn {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: 10.5%;
    margin-left: 15px;
    color: rgb(161, 161, 161);
    transition: 0.3s;
    font-size: 18px;
}
#more-btn:hover {
    color: rgb(160, 17, 255);
    filter: drop-shadow(0px 0px 4px rgb(160, 17, 255));
    border-bottom: 1px solid rgb(160, 17, 255);
    transform: scale(1.03);
    transition: 0.6s;
}
#more-list{
    transform-origin: top center;
    transform: scaleY(0);
    position: absolute;
    background-color: #1d222b;
    padding: 10px;
    width: 103px;
    border-radius: 0 1vh 1vh 1vh;
    z-index: 2;
    cursor: auto;
    transition: 0.3s ease-in;

}

.more-list-item{
    color: white;
    text-decoration: none;
    width: 150%;
    display: block;
    padding: 6%;
}

.more-list-item:hover{
    color: rgb(160, 17, 255);
    filter: drop-shadow(0px 0px 4px rgb(160, 17, 255));
}

#more-list hr{
    margin: 2% auto;
    width: 96%;
}

#more-btn:hover #more-list{
    transform: scaleY(1);
    transition: 0.3s ease-out;
}


