* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    user-select: none;
    cursor: none;
}

.body {
    height: 100vh;
    max-height: 100vh;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
}

.body::-webkit-scrollbar {
    display: none;
}

.main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 14px;
}

@media (min-width: 768px) {
    .main {
        padding: 0 20px;
    }
}

@media (min-width: 1024px) {
    .main {
        padding: 0;
    }
}

.background-layer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.main-background-layer {
    background: #1E1E20;
    backdrop-filter: blur(40px);
    z-index: 1;
}

.custom-cursor, .cursor-shadow {
    display: none;
}

.cursor-shadow {
    border-radius: 50%;
    overflow: hidden;
    filter: blur(75px);
}

@media (min-width: 1024px) {
    .custom-cursor, .cursor-shadow {
        position: fixed;
        top: 50%;
        left: 50%;
        display: block;
        z-index: 100;
        transform: translate(-50%, -50%);
    }
}

.custom-cursor {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: rgba(50, 50, 50, 0.7);
    box-shadow: 0 0 35px 10px rgba(45, 45 ,45, 1);
    transition: opacity 200ms;
}

.flex-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 17px;
    width: 304px;
    margin-bottom: 85px;
}

@media (min-width: 414px) {
    .flex-wrapper {
        width: 352px;
        gap: 30px;
    }
}

@media (min-width: 768px) {
    .flex-wrapper {
        width: 500px;
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .flex-wrapper {
        width: 512px;
        gap: 140px;
        margin-bottom: 0;
    }
}

/*@media (min-width: 1440px) {*/
/*    .flex-wrapper {*/
/*        width: 1032px;*/
/*        gap: 40px;*/
/*        margin-bottom: 120px;*/
/*    }*/
/*}*/

.title-group {
    width: 100%;
    aspect-ratio: 264 / 86;
}

.text {
    max-width: 100%;
    text-align: center;
    font-family: ArialMT, serif;
    font-size: 7px;
    font-style: normal;
    font-weight: 400;
    color: rgba(245, 245, 247, 1);
    letter-spacing: 0.08em;
    padding-left: 3px;
}

@media (min-width: 414px) {
    .text {
        font-size: 8px;
    }
}

@media (min-width: 768px) {
    .text {
        font-size: 11px;
        letter-spacing: 0.12em;
    }
}


@media (min-width: 1024px) {
    .text {
        font-size: 12px;
        letter-spacing: 0.08em;
    }
}

.content {
    z-index: 1000;
}