html{
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body{
    background-color: black;
    overflow-x:hidden;
    color:white;
}

div.hero-class{

    position: relative;
    display: flex;
    justify-content: center;
    z-index: 0;
    overflow-x:hidden;
    padding: 0;
    margin: 0;
}

div.hero-class img{

    height: 100vh;
    display: block;
    filter:hue-rotate(200deg);

}

div.hero-class.explore img{

    transition: 0.5s ease-in;
    transform: scale(4);
    filter: hue-rotate(200deg) brightness(0) blur(5px);

}

div.hero-text{
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 100px;
    border : 5px solid rgb(255, 255, 255);
    font-size: 52px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 4px;
    transition: 0.3s ease;
}

div.hero-text.explore{
    color: rgba(255, 255, 255, 0);
    border: 5px solid rgba(255, 255, 255, 0);
}

div.hero-text:hover{
    border-radius: 5px;
    cursor: pointer;
}

a.name img{
    margin-left: 5px;
    height: 70px;
    padding: 5px;
    transition: 0.5s ease;
    opacity: 1;
}

a.name img.fade-out{
    opacity: 0;
}


li a {
    color: white;
    text-decoration: none;
    font-size: 35px;
    transition: 0.1s ease;
    display:inline-block;
}
li a:visited {
    color: white;
}
li a:hover {
    color: #777777;
    transform : scale(1.5);
}

nav.navbar{
    border-radius: 40px;
    box-shadow: 0 0 50px 15px #48abe0;
    background-color: rgb(0, 0, 0);
    display: flex;
    transition: .5s ease;
    position: sticky;
    top: 15px;
    z-index: 1000;
}
nav.navbar.menu{
    /* transform: translateX(-450px); */
    margin-right: 450px;
    transition: .5s ease;
}

.ham-menu{

    height: 50px;
    width: 50px;
    margin-left: auto;
    margin-right: 40px;
    margin-top: 12.5px;
    position: relative;
    transition: .5s;
}

.ham-menu.menu{
    transform: translateX(450px);
}

.ham-menu span {

    height: 5px;
    width: 100%;
    background-color: white;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0, -50%);
    transition: .5s ease;

}

.ham-menu span:nth-child(1){
    top:25%
}

.ham-menu span:nth-child(2){
    top:75%
}

.ham-menu.menu span:nth-child(1){
    top: 50%;
    transform: rotate(-45deg);
}

.ham-menu.menu span:nth-child(2){
    top: 50%;
    transform: rotate(45deg);
}

.ham-menu.menu span:nth-child(3){
    transform: translateX(-60vw);
    opacity: 0;
}

div.off-screen-menu{

    color: white;
    background-color: black;
    height: 100vh;
    width:100%;
    max-width: 450px;
    position: fixed;
    z-index: 9;
    top: 0;
    right: -500;
    display: flex;
    flex-direction: column;
    justify-content:start ;   
    align-items:center;
    text-align: center;
    transition:  .5s ease;
    border-left: solid ;
    border-radius: 100px;
    box-sizing: border-box;
    padding: 10px;
}

div.off-screen-menu.menu{
    right: 0px;
}

div.off-screen-menu ul{

    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x:auto;
    padding-left: 0;
    padding-top: 5vh;
    list-style-type: none;
}

@media screen and (max-width: 650px){

    nav.navbar.menu{
        margin-right: 0px;
        transform: translateX(-450px);
        transition: .5s ease;
    }   

    .ham-menu.menu{
        position: relative;
        transform: translateX(450px);
    }

    div.hero-class img{
    height: 60vh;
    }

    div.hero-class.explore img{

    height: 100vh;

    }

}


/* ################## ABOUT ME #################### */

div.aboutme{

    padding-top: 7vh;
    font-size: 3vh;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

div.abouttext h1{

    margin: 0px;
    /* color : blue; */
}

div.aboutme img{
    position:relative;
    width: 33vw;
    border-radius: 40%;
    box-shadow: 0 0 50px 0px #48abe0;
}