@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: #000615;
    --second-bg-color: #000e2f;
    --text-color: #fff;
    --main-color: #F09D51;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background-color: #001b5f;
    color: var(--text-color);
}

section {
    min-height: 100vh;
    padding: 6rem 9% 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header .sticky{
    border-bottom: .1rem solid rgba(0, 0, 0, .2) ;
}

.logo {
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
    cursor: default;
}

.navbar a {
    font-size: 1.7rem;
    color: var(--text-color);
    margin-left: 4rem;
}

.navbar a:hover {
    color: var(--main-color);
    text-shadow: 0 0 1rem #ffffff;
    border-radius: 100%;
    transition: .3s;
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
}

/*Beack Points*/

@media (max-width: 1200px){
    html {
        font-size: 40%;
    }
}
@media (max-width: 991px){
    .header {
        padding: 2rem 3%;
    }

    section{
        padding: 4rem 3% 2rem;
    }

    .footer{
        padding: 2rem 3%;
    }
}

@media (max-width: 768px){
   
 section {
    min-height: 55vh;
 }

    #menu-icon{
        display: block;
    }

    .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: var(--bg-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        flex-direction: column;
        display: none;
    }

    .navbar.active{
        display: flex;
    }

    .navbar a {
        font-size: 2rem;
        margin: 3rem 0;
    }
}