*{
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans',sans-serif;
}

.navbar
{
    background-color: #ADB5BD;
    height: 80px; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
    border-style: solid;
    border-radius: 15px;
    
}

.navbar__container
{
    
    display:flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    
}

#navbar__logo
{
    background-color: #000000;
    background-image: linear-gradient(to top,#212529 0%,#6C757D 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 50px;
    font-family: 'Regular 400', 'Arial Narrow', Arial, sans-serif;
    font-weight: bolder;
    -webkit-text-stroke-width: 2px;    
    -webkit-text-stroke-color: #212529;
}

.fa-gem{
    margin-right: 0.5rem;
}

.navbar__menu {
    display:flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item{
    height: 80px;
}

.navbar__links{
    color: #212529;
    display: flex  ;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height:100%;
    
}

.navbar__btn{
    display: flex;
    justify-content: center;
    align-items: center;
}


body{
    text-align: center;
    background-color: #141414;
    background-size: 80;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: 50%;
}

.button{
    border-radius: 4px;
    background-color: #495057;
    border: none;
    color: #F8F9FA;
    text-align: center;
    font-size: 20px;
    padding: 10px;
    width: 150px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    text-decoration: none;
}

.button:hover{
    background-color: #F8F9FA;
    transition: all 0.3s ease;
}

.navbar__links:hover{
    color: #F8F9FA;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px)
{
    .navbar__container{
        display:flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }
    .navbar__menu{
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
        
    }

    .navbar__menu.active{
        background: #343A40;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }

    #navbar__logo{
        padding-left: 25px;
    }

    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease;
        background-color: #F8F9FA;
    }

    .navbar__item{
        width:100%;
        
        
    }

    .navbar__links{
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu{
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(-100%, 60%);
    }

    .navbar__btn{
        padding-bottom: 2rem;
        justify-content: center;
        display:flex;
        align-items: center;
    }

    .button{
        
        width: 80%;
        height: 80%;
        margin: 0;
    }

    .navbar__toggle .bar{
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    
}




 
.Main__Container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    height: 90vh;
    background-image: linear-gradient(to bottom, #313539 0%,#141414 100% );
    margin: 0 auto; 
    z-index: 1;
    width: 100%;
    
    padding: 0 50px;
}

#main__img{
    width: 100%;
    height: auto;
    
    
    
}

.Main__Content h1{
    font-size: clamp(30px, 3vw, 70px);
    background-color: #ffffff;
    background-image: linear-gradient(to top, #ADB5BD 0%,#F8F9FA 100% );
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}



.Main__Content h2{
    font-size: clamp(20px, 3vw, 60px);
    background-color: #ffffff;
    background-image: linear-gradient(to top, #ADB5BD 0%,#F8F9FA 100% );
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.Main__Content h3{
    font-size: clamp(40px, 3vw, 80px);
    background-color: #ffffff;
    background-image: linear-gradient(to top, #ADB5BD 0%,#F8F9FA 100% );
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__button{
    font-size: clamp(37px, 3vw, 80px);
    background-color: #ADB5BD;
    border-style: solid;
    border-radius: 15px;
    background-size: 100%;
    -webkit-text-fill-color: black;
    
    font-family: 'Regular 400', 'Arial Narrow', Arial, sans-serif;
    font-weight: bolder;
    padding: 10px 20px;
    text-decoration: none;
} 

.main__button a{
    text-decoration: none;
    background-image: linear-gradient(to top, #212529 0%,#343A40 100% );
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    -webkit-background-clip: text;
    -moz-background-clip: text;
}
    
   

