/*
    Michael Yull || 2022
*/

a{
    text-decoration: none;
}

.wrapper{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    overflow: hidden;    
    color: #aaa;    
    font-family: 'Source Sans Pro', sans-serif;
}

#page-wrapper{    
    background-color: #0a0a0a;
}

#menu-bar{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 50px;
    font-size: 26px;
    display: flex;
    flex-direction: row;
    align-items: center;

    background-color: rgba(10, 10, 10, 0.8);
    box-shadow: 0px 0px 25px 25px rgba(10, 10, 10, 0.8);
}

#logo{    
    height: 80%;
    width: auto;
    cursor: pointer;
}

#title-large, #title-small{
    font-weight: 800;
    color: white;
}

#title-small, #tagline-small{
    display: none;    
}

#tagline-large, #tagline-small{
    margin-left: 10px;
}

.filler{
    flex: 1;
}

#menu-button{
    margin-right: 20px;
}

.menu-button:hover{
    color: white;    
    cursor: pointer;
}

#burger-bar{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: -360px;
    width: 360px;
    background-color: #0a0a0a;
    font-size: 24px;
}

.burger-item{
    height: 60px;
    display: flex;

    align-items : center;
    justify-content : flex-end;

    color: white;
}

.burger-item i{
    padding: 20px;
}

.burger-item.title{
    justify-content: center;
}

.menu-button{
    color: #aaa;
}

#content-scroller{
    text-align: center;
}


@media(max-width:720px){

    .menu-button{
        color: white;
    }

    #menu-bar{
        height: 50px;
    }

    #title-large, #tagline-large{
        display: none;    
    }

    #title-small, #tagline-small{
        display: flex;    
    }

    .burger-item{
        height: 60px;
    }
    
}