body {
    background: #0a0015;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: relative;
    font-family: poppins, Arial, sans-serif;
}

.externalLogo {
    height: 60px;
}

.discordLogo {
    height: 45px;
}

.desktopContainer {
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.desktopEntry {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.desktopEntry > span {
    color: #fff;
    font-weight: bold;
}

.desktopEntryLink {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: calc(50vh - 2px);
    width: calc(50vw - 2px);
}

.desktopEntryLink:hover {
    background: #28282b!important;
}

.desktopLink1 {
    border-bottom: 2px solid #5a1c93!important;
    border-right: 2px solid #5a1c93!important;
}

.desktopLink2 {
    border-left: 2px solid #5a1c93!important;
    border-bottom: 2px solid #5a1c93!important;
}

.desktopLink3 {
    border-top: 2px solid #5a1c93!important;
    border-right: 2px solid #5a1c93!important;
}

.desktopLink4 {
    border-top: 2px solid #5a1c93!important;
    border-left: 2px solid #5a1c93!important;
}

.desktopLogoContainer {
    position: absolute;
    top: calc(50% - 79px);
    left: calc(50% - 79px);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #5a1c93!important;
    transform: rotate(45deg);
    width: 150px;
    height: 150px;
    background: #28282b;
}

.desktopLogo {
    width: 120px;
    transform: rotate(-45deg);
}

.mobileContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.mobileEntry {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: calc(25vh - 120px/4);
    border-bottom: 2px solid #5a1c93!important;
}

.mobileEntryLink {
    width: 100%;
    height: calc(25vh - 120px/4);
    z-index: 10;
}

.mobileEntryLink:active {
    text-decoration: none;
}

.mobileEntry > span {
    color: #fff;
    font-weight: bold;
}

.tebexTitle {
    padding-top: 10px;
}

.discordTitle {
    padding-top: 10px;
}

.mobileLogoContainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 112px;
    background: #28282b!important;
}

.bkLogoMobile {
    position: relative;
    height: 100px;
    z-index: 1;
}

.line {
    position: absolute;
    height: 2px;
    background: #5a1c93;
}

.leftLine1 {
    top: 33%;
    left: 0;
    width: 30%;
}

.leftLine2 {
    top: 66%;
    left: 0;
    width: 30%;
}

.rightLine1 {
    top: 33%;
    right: 0;
    width: 30%;
}

.rightLine2 {
    top: 66%;
    right: 0;
    width: 30%;
}

@media screen and (min-width: 480px) {
    .mobileContainer {
        display: none;
    }

    .desktopContainer {
        display: flex;
    }

    .externalLogo {
        height: 90px;
    }

    .discordLogo {
        height: 65px;
    }
}