* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    list-style: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: var(--text-color);
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
}

*::-webkit-scrollbar-track {
    background: var(--surface-color-dark);
    border-radius: 10px;
    margin: 10px;
}

.bx-core-window * {
    color: #222;
}

html {
    width: 100%;
    background: #17212B;
    height: 100vh;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

:root {
    --text-color: white;
    --surface-color: #242F3D;
    --surface-color-dark: #1d2631;
    --surface-color-light: rgb(44, 56, 71);
    --surface-color-light-2: rgb(53, 66, 82);
    --line-color: #2c3743;
    --grey-color: #AAA;
    --border-radius: 6px;
    --large-mb: 120px;
    --medium-mb: 50px;
    --container: 980px;
    --user-element-height: 45px;
    --main-color: #2563EB;
}

.container {
    width: var(--container);
    margin: 0 auto;
    height: 100%;
}

.noise {
    background-image: url('/noise.gif');
    background-size: 70px;
    opacity: .04;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
}

.tile {
    width: 100%;
    height: 100%;
}

.tile__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.tile__title {
    font-size: 32px;
    font-weight: 600; 
    text-align: center;
}

.tile__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tile__item {
    aspect-ratio: 1/1;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--line-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 200px;
    background: var(--surface-color);
    transition-duration: .2s;
    overflow: hidden;
}

.tile__link {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.tile__item:active {
    transform: scale(.95);
}

.tile__item:hover {
    transform: scale(1.05);
    background: var(--surface-color-dark);
}

.tile_logo {
    height: 80px;
}

.tile_logo svg {
    height: 100%;
    width: auto;
}

.tile__icon {
    height: 64px;
}

.tile__icon svg {
    max-width: 100%;
    height: 100%;
    fill: var(--main-color);
}

.tile__name {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
    color: var(--main-color);
}

.tile__subname {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: rgb(177, 177, 177);
}

@media (max-width: 1024px) {
    :root {
        --container: calc(100% - 20px);
    }

    .tile__list {
        gap: 5px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .tile__name {
        font-size: 14px;
    }

    .tile__item {
        padding: 10px;
        min-width: unset;
    }
}