*{
    margin: 0;
    padding: 0;
}
html{
    font-size: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* hero section */
#hero{
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center; 
    align-items: center;
    text-align: center;
}

#hero::before{
    content:"";
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(hero.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter:brightness(50%)
}

#hero_content{
    position:absolute;

}
#hero_content h1{
    color:#fff;
    font-size: 7rem;
    text-shadow: 2px 2px 2px #000;
    animation: glow 1s ease-in-out infinite alternate;
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
}


#hero_content h2{
    color:#fff;
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 2px #000;
    /* animation: glow 1s ease-in-out infinite alternate; */
    font-family: "Rubik Glitch", system-ui;
    font-weight: 400;
    font-style: normal;
    text-shadow: 1px 1px 1px maroon;
}
@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #a30404, 0 0 10px #a30404, 0 0 15px #a30404, 0 0 20px #a30404, 0 0 25px #a30404, 0 0 30px #a30404;
  }
  
  to {
    text-shadow: 0 0 5px #fff, 0 0 5px #bfcb0c, 0 0 6px #bfcb0c, 0 0 14px #bfcb0c, 0 0 11px #bfcb0c, 0 0 18px #bfcb0c, 0 0 16px #bfcb0c;
  }
}

#hero_content a{
    color:#fff;
    padding:5px 20px 3px 20px;
    border: 1px solid orange;
    background: rgba(84, 59, 5, 0.6);
    font-size: 1.5rem;
    text-decoration: none;
    border-style: outset;
    border-radius: 25px;
}

#hero_content a:hover{
    background: rgb(115, 115, 7);
}
/* --------------------------------------------------------- */
/* Header section */
#header{
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100vw;
    height: 70px;
    line-height: 70px
}
#navbar{
    display: flex;
    justify-content: space-between;
    background-color: rgb(0,0,0,0.5);
    
}
#navbar img {
      height: 100px; 
      width: 130px;
      margin-left: 3%;
      padding-bottom: 0%;
    }
#navbar ul{
    display: flex;
    margin-right: 5%;
}
#navbar ul li{
    list-style: none;
    padding: 3px 15px 3px 15px;
    margin-top: 3%;
    
}
#navbar ul li:hover{
    background: rgb(109, 109, 5);
    cursor:pointer;
}
#navbar ul li a{
    text-align: right;
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    
}

 /* Dropdown container */
        .dropdown {
            position: relative;
            display: inline-block;
            align-items: center;
        }

 /* Dropdown content */
        .dropdown-content {
            display: none;
            position: absolute;   
            background-color: #444;
            min-width: 160px;
            z-index: 1;
        }

        /* Show dropdown on hover */
        .dropdown:hover .dropdown-content {
            display:block;
        }

        /* Dropdown links */
        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }

        .dropdown-content a:hover {
            background-color: #666;
        }


/* Header end */




    