:root {
    
    --apple-black: rgb(59, 59, 59);
    --apple-gray: #e3e3e3;
    --rogers-red: rgb(218, 41, 28);
    --logo-yellow: #ffc700;
    --global-font-size: 18px;
    --global-font-weight: 400;

}

.menu-bar-container
{
    position: relative;
    z-index:5;
    top:0;
    left:0;
    margin: 0px 0px;
    padding: 0px 0px;
    width:100vw;
    height:70px;
    box-shadow: 0px 0px 1px;
    display: flex;
    justify-content:center;
    align-items: center;
    background-color: black;
    

    .menu-bar{
        width:100vw;
        position: relative;
        display:flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .menu{
        margin-left:20px;
        cursor: pointer;
        position: relative;
        display:flex;
        align-items: center;
        height:70px;

        .active{
            color: var(--logo-yellow);
        }
        
        a{
            font-weight: 400;
            text-decoration: none;
            color: var(--apple-gray);

        }
        a:hover{
            color: var(--logo-yellow);
        }
        
    }
    
    .action{
        cursor: pointer;
        margin-left: 20px;;
        margin-right: 20px;
        border: 2px solid #ffc700;
        border-radius: 5px;
        background-color: black;
        
        display: flex;
        justify-self: flex-end;
        
        a{
            text-decoration: none;
            color: #ffc700;
            font-weight:400;
        }
        
    }
    .action:hover{
        background-color: var(--logo-yellow);
        border: 2px solid black;
        
        a{
            color:black;
        }
    }

    

    .left-box, .right-box {
        display: flex;
        justify-content:center;
        align-items: center;
    }
    
    .center-box {
        display: none;
        justify-content:center;
        align-items: center;
    }


}
@media only screen and (min-width: 1024px)
{
    .menu-bar-container{
        .menu{
            margin-left:20px;
        }
        .action{
            padding: 8px 15px 8px 15px;
        }
        .center-box{
            display:flex;
        }
    }
}
@media only screen and (min-width: 650px) and (max-width: 1024px)
{
    body{
        font-size:16px;
    }
    .menu-bar-container{
        height:60px;
        
        .action{
            padding:6px 15px 6px 15px;
        }
        .menu{
            margin-left:20px;
        }
        .center-box{
            display: flex;
        }
    }
}
@media only screen and (max-width: 650px)
{
    body
    {
        font-size:16px;
    }
    .menu-bar-container
    {
        height:60px;
        
        .action{
            padding:5px 10px 5px 10px;
        }
        .menu{
            margin-left:10px;
        }
    }
}