nav {
    background: linear-gradient(45deg, var(--color-4) 0%, var(--color-6) 100%);
    box-shadow: 0px 0px 40px 4px var(--color-4);
}

.nav-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: bold;
    color: var(--color-1);
}

.logo {
    display: flex;
    flex-direction: row;
    font-size: 5em;
    margin: 0 0 0 .2em;
    width: fit-content;
    vertical-align: center;
}

.logo p {
    color: var(--color-5);
}

.menu {
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bet-button {
    background: var(--color-5);
    background-image: linear-gradient(to right top, #5465ff, #0085ff, #0096e6, #009fbf, #20a39e);
    color: var(--color-4);
    width: 12em;
    height: 3em;
    margin-right: 2em;
    display: flex;
    border-radius: 1.5em;
    justify-content: center;
}

.disabled {
    display: none;
}

.bet {
    font-size: 2em;
    padding: .11em 0 .2em 0;
}

.bet-button:hover {
    background: var(--color-3);
    color: var(--color-2);
    box-shadow: 0px 0px 7px 2px var(--color-2);
    transition: 200ms;
}

.profile {
    position: relative;
    display: inline-block;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 250;
}

.profile-button {
    font-size: 30;
    padding: 3 0 3 0;
    width: 250;
    text-align: center;
    align-items: center;
}

.menu-item {
    position: relative;
    display: inline-block;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: auto;
}

.menu-button {
    font-size: 30;
    padding: 3 2 3 2;
    margin: 0 30 0 0;
    width: auto;
    text-align: center;
    align-items: center;
}

.profile-submenu {
    display: none;
    position: absolute;
    color: var(--color-1);
    border-radius: 2px;
    padding: 4 0 4 0;
    width: 250;
    z-index: 1;
    font-size: 20;
}

.profile-submenu-item {
    margin: 2 0 2 0;
    padding: 3 0 3 0;
    background: var(--color-2);
    width: 95%;
    border-radius: 1em;
    box-shadow: 0px 0px 7px 2px var(--color-4);
}

.profile:hover{
    color: var(--color-2);
}

.menu-item:hover {
    color: var(--color-2);
}

.profile:hover .profile-submenu{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-submenu-item:hover {
    color: var(--color-2);
    background: var(--color-3);
}

.swap-sub {
    display: none;
}

.swap-bet-sub {
    display: none;
}

@media only screen and (max-width: 1440px)
{
    .profile-button {
        font-size: 25;
        width: 200;
    }

    .profile {
        width: 200;
    }
    
    .menu-button {
        font-size: 25;
        margin: 0 20 0 0;
    }

    .profile-submenu {
        width: 200;
    }

}

@media only screen and (max-width: 1024px)
{
    .swap-sub {
        display: block;
    }

    .swap-menu {
        display: none;
    }

    .disabled {
        display: none;
    }

    .profile-button {
        font-size: 30;
    }
}

@media only screen and (max-width: 768px)
{
    
    .swap-bet-btn {
        display: none;
    }

    .disabled {
        display: none;
    }

    .swap-bet-sub {
        display: block;
        background: var(--color-5);
    }
}

@media only screen and (max-width: 425px)
{
    .logo {
        height: 70;
    }

    .nav-items {
        flex-direction: column;
    }

    .menu {
        justify-content: start;
    }

    .disabled {
        display: none;
    }

    .profile-button {
        padding: 0 0 0 .7em;
        text-align: left;
        width: calc(100% - .7em);
    }
    
    .profile {
        width: 100%;
        color: var(--color-2)
    }

    .profile-submenu {
        display: none;
        position: relative;
        background-color: var(--color-4);
        color: var(--color-1);
        border-radius: 2px;
        width: 100%;
        z-index: 1;
        font-size: 20;
    }

    .profile-submenu-item {
        padding: 3 0 3 0;
        background: var(--color-2);
        width: 90%;
        border-radius: 2px;
    }

    .menu-item:hover {
        color: var(--color-2);
    }

    .profile:active .profile-submenu{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .profile-submenu-item:hover {
        color: var(--color-2);
        background: var(--color-4);
    }
}