@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}
.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;    
}
.glow-text{
    animation-name: glow;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}
.bg-video{
    min-height: 100vh;
    position: relative;
    width: 100%;
}
.bg-video video{
    width: auto;
    z-index: -20;
    display: flex;
    position: fixed;
    min-height: 100vh;
}
nav{
    top:0;
    width: 100%;
    position: fixed;
    transition: 0.4s;
    z-index: 20;
}

nav ul{
    display: flex;
    justify-content: flex-end;
    list-style: none;
    align-items: center;
    width: 100%;
}
nav li{
    height:70px;
}
nav li:first-child{
    margin-right: auto;
}
.link{
    color: white;
    font-size:20px;
}
a:hover{
    color:gold;
}
nav a{
    text-decoration: none;
    color: black;
    height: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
}
.home{
   z-index: 10;
   display: flex;
   position: relative;
   top:0;
   min-height: 100vh;
}
.home .content h6{
    font-size: 40px;
    position: absolute;
    padding-top: 20%;
    color:rgb(255, 252, 239);
    padding-left: 10%;
}
.about{
    min-height: 100vh;
    width: auto;
    background-color: rgba(255,255,255,0.295);
    backdrop-filter: blur(10px);
    z-index: 10;
    overflow: hidden;
}
.about .content{
    margin: 10% 20% 0% 40%;
    text-align: justify;
    width:50%;
    color: black;
    font-weight: bold;
    font-size: 20px;
}
.about .img{
    position: absolute;
    margin-left: 2%;
    padding-top: 10%;
    display: inline-block;
}
.about .img img{
    border-radius: 50%;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
}
.menu-button{
    display:none;
}
.menu-bar{
    display: none;
}
.menu-bar li{
    width: 100%;
}
.menu-bar a{
    width: 100%;
}
::-webkit-scrollbar {
    width: 0px;
}
@keyframes glow{
    0%{
        text-shadow: 0 0 5px black;
        color: black;
    }
    100%{
        text-shadow: 0 0 5px rgb(144, 132, 64);
        color: rgb(144, 132, 64);
    }
    
}
@media(max-width:709px){
    .mobile_view{
        display: none;
    }
    .menu-button{
        display: block;
        height: 100%;
        padding: 0 30px;
        text-decoration: none;
        display: flex;
        align-items: center;
        color: black;
    }
    .cross-button{
        padding: 0 30px;
        text-decoration: none;
        display: flex;
        align-items: center;
        color: black;
    }
    .menu-bar{
        position: fixed;
        top: 0;
        right: -100%;
        display: flex;
        height: 100vh;
        width: 100%;
        background-color: rgba(255,255,255,0.295);
        backdrop-filter: blur(10px);
        z-index:999;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        box-shadow: -10 0 10px rgba(0,0,0,0.1);
        transition: 0.45s ease-out;
    }
    .about .content{
        width:auto;
        margin: auto;
    }
    .about .content p{
        padding: 10px;
    }
    .about .img{
        display: block;
        position: relative;
        margin: auto;
        width: 100%;

    }
    .about .img img{
        border-radius: 2%;
        box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }
}