body {
    font-family: Open Sans, sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    margin: 0;
    text-align: center;
    overflow: hidden;
    padding-bottom: 87px;
    padding-top: 50px;
}


.container {
    max-width: 100%;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    /*height: calc(100dvh - 95px);*/
    height: calc(100dvh - 167px);
    overflow-y: auto;
    overflow-x: hidden;
}
/*.ios{*/
/*    padding-top: 30px;*/
/*}*/

/*.ios .container{*/
/*    height: calc(100dvh - 125px);*/
/*}*/


.shine-animation {
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s infinite linear;
}

@keyframes shine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.vertical-shine {
    overflow: hidden;
}

.vertical-shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: vertical-shine 2s infinite;
}

@keyframes vertical-shine {
    0% {
        left: -40%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}



.btn {
    background: var(--color-btn);
    width: 100%;
    border: none;
    border-radius: 15px;
    padding: 14px 0;
    height: 50px;
    color: var(--color-text-primary);
    font-family: Open Sans,serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    position: relative;
}

.btn-outline {
    background: var(--color-btn-background);
    border: 2px solid var(--color-btn);
    color: var(--color-btn);
}


.bottom-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    background-color: var(--color-bg-dark);
    box-shadow: 0px -10px 20px 0px #0000000D;
}

.bottom-menu a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 52px;
    color: var(--color-menu-white);
    text-decoration: none;
}

.bottom-menu a.active {
    color: var(--color-btn);
}


/*home*/

.mainDiv {
    background-color: var(--color-bg-secondary);
    border-radius: 20px;
    padding: 6px;
    position: relative;
}

.about-button {
    width: 79px;
    height: 61px;
    padding: 10px;
    background: var(--color-bg-accent);
    border: none;
    border-radius: 15px;
    color: var(--color-btn);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap:2px;
}

.about-button img {
    width: 25px;
    height: 25px;
}


.menu {
    display: flex;
    justify-content: space-between;
    padding: 6px 6px 0;
}

.home-text{
    margin-top: 30px;
    margin-bottom: 6px;
    color: var(--color-btn-active);
}

.highlight {
    color: var(--color-btn);
    height: 55px;
    margin-bottom: 30px;
}
