
/* base styles */
* {
    /* margin: 0;
    padding: 0;
    box-sizing: border-box; */
    list-style: none;
    text-decoration: none;
}


/* .nav-container{
position: fixed;
top:1em;
right:1rem;
z-index: 109;
padding-right: 2rem;
} */

 .ham-menu-icon{ /*this is a copy of nav-container */

    font-size: 5rem;
    color:#232323;
    position: fixed;
    top: 5px;
    right:2rem;
    margin-top:-6rem;
    z-index: 9;

} 


.df-logo{
    position: relative;
    top: 2rem;
    left:2rem;
    margin-bottom: -1em;
}

.ham-links-position{
    /* background-color: pink; */
    position: relative;
    top: 4rem;
    left:2rem;
}


.ham-links {
    color: #f3b83b;
}
.ham-links:visited {
    color: #f3b83b;
}
.ham-links:hover {
    color: #fff;
}

/* body {
    background-color: rgb(65, 71, 97);
    font-family: sans-serif;
} */



/* off-screen-menu */
.off-screen-menu {
    /* margin-top: -1.67em; */
    background-color:  #232323;
    /* border-top: red 2px; */
    height: 100vh;
    width: 100%;
    max-width: 400px;
    position: fixed;
    top: 0rem; /* position of menu text */
    right: -450px;/* position of menu BG */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: flex-start;  
    /* justify-content: center; */
    /* text-align: center; */
    font-size: 2rem;
    transition: .3s ease;

}

.off-screen-menu.active {
    right: 0;
}



/* nav */
/* .hm {
    padding: 1rem;
    display: flex;
    background-color: rgb(34, 37, 49);
} */



/* hamburger menu icon*/
/* .ham-menu-icon {
    font-size: 5rem;
    color:pink;
    margin-left: auto;
    position: relative;
    top:-40px;
    left:40%;
} */

.cross{
    position: relative;

    left:94%;
    margin-top:-23px;
    font-size: 3em;
    color:#fff;
    transform-origin: 0 0;
    transform: rotate(45deg);
}

.ham-menu-icon.active {
    transition: 500ms;
    opacity: 0%;
}

/* #currentScrollPos{
    transition: 2s;
    opacity: 0%;
} */

/* #ham-menu-scrl{
    transition: 2s;
    opacity: 0%;
} */

.ham-menu-icon{
    transition: top 1s;
}



/* .ham-menu-icon span {
    height: 5px;
    width: 100%;
    background-color: #232323;
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
} */

/* .ham-menu-icon span:nth-child(1) {
    top: 25%;
}
.ham-menu-icon span:nth-child(3) {
    top: 75%;
}
.ham-menu-icon.active span {
    background-color: white;
}
.ham-menu-icon.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu-icon.active span:nth-child(2) {
    opacity: 0;
}
.ham-menu-icon.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
 */
@media screen and (min-width: 360px) and (max-width: 375px){

    .df-logo{
        position: relative;
        top: 0.9rem;
        left:2rem;
    }
    

    /* .nav-container{
        position: fixed;
        top:1em;
        right:1rem;
        z-index: 99;
    } */

    .ham-menu-icon{
        color: #fff;
        font-size: 2rem;
        position: fixed;
        top: 2px;
        right:10px;
        margin-top:-15px;
    }

    .icon-actual{
        background: orangered;
        border: 1px solid orangered;
        padding:2px 15px;
        border-radius: 30px;

    }

    .cross{
        position: relative;
        top:1px;
        left:90%;
        margin-top:5px;
        text-align: center;
        width: 50px;

        font-size: 1em;
        color:#fff;
        transform-origin: 0 0;
        transform: rotate(45deg);

        background: orangered;
        border: 1px solid #fff;
        padding:0px 5px;
        border-radius: 25px;

        /* diable rotate and see if you can get a circle around the x */
    }
            
        
}